{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4", "ssg:https://framerusercontent.com/modules/ro6bsImV7CNNdanh1oIE/uYRQLphJfwftksVpArKV/NextPrev.js", "ssg:https://framerusercontent.com/modules/LtAbdZdoZUoXeNGeSb3t/k4rTObaHAcHNPi7t20yK/jN_vBlAcR.js", "ssg:https://framerusercontent.com/modules/xdxXNfmp13ZH6oexdIFf/3RWqkchP2IpDOCUtu9cu/XXjPR1bCv.js"],
  "sourcesContent": ["// new utils\nexport const findQueryInProps=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj.query;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findQueryInProps(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};export const updateQueryInProps=(obj,newQuery)=>{if(obj==null)return obj;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return{...obj,query:newQuery};// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){const updatedChild=updateQueryInProps(obj[key],newQuery);if(updatedChild!==obj[key]){return{...obj,[key]:updatedChild};}}}return obj;};export const findPropsBeforeQuery=obj=>{if(obj==null)return null;// Check if `query` exists in the current level\nif(obj.hasOwnProperty(\"query\"))return obj;// Iterate over the properties\nfor(let key in obj){if(obj.hasOwnProperty(key)&&typeof obj[key]===\"object\"){let result=findPropsBeforeQuery(obj[key]);if(result!==null)return result;}}// If `query` is not found\nreturn null;};\nexport const __FramerMetadata__ = {\"exports\":{\"findQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateQueryInProps\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"findPropsBeforeQuery\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utlis.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,// @ts-ignore\nuseQueryData}from\"framer\";import{useState,useEffect}from\"react\";import{findQueryInProps,updateQueryInProps}from\"https://framer.com/m/Utlis-SwIN.js@U9vmYX0zDZtz999aDBu4\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight auto\n */export default function Prev_Next(props){var _props_collectionList,_props_collectionList1,_props_collectionList2;const{type,currentSlug,repeat,style}=props;if(!((_props_collectionList=props.collectionList)===null||_props_collectionList===void 0?void 0:_props_collectionList[0])){return /*#__PURE__*/_jsx(SetupMessage,{title:\"Set Up the Component\",description:\"Add layer or component to the component property.\",containerStyle:style});}const collectionList={...(_props_collectionList1=props.collectionList)===null||_props_collectionList1===void 0?void 0:_props_collectionList1[0],props:{...(_props_collectionList2=props.collectionList)===null||_props_collectionList2===void 0?void 0:_props_collectionList2[0].props,style}};const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[newCollectionList,setNewCollectionList]=useState();const query=!isCanvas?findQueryInProps(collectionList===null||collectionList===void 0?void 0:collectionList.props):undefined;const queryWithoutLimitAndOffset={...query,limit:null,offset:null};const queryData=query?useQueryData(queryWithoutLimitAndOffset):[];useEffect(()=>{const init=async()=>{const currentIndex=findIndex(queryData,currentSlug);const newOffset=getNewOffset(queryData,type,currentIndex,repeat);setNewCollectionList({...collectionList,props:updateQueryInProps(collectionList.props,{...query,limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:newOffset}})});};!isCanvas&&init();},[]);return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\"},children:isCanvas?collectionList:newCollectionList});}const findIndex=(data,currentSlug)=>{return data.findIndex(item=>Object.values(item).includes(currentSlug));};const getNewOffset=(items,type,currentIndex,repeat)=>{const lastIndex=items.length-1;const isLastIndex=currentIndex===lastIndex;const isFirstIndex=currentIndex===0;if(type===\"next\"){if(repeat){return isLastIndex?0:currentIndex+1;}return isLastIndex?items.length:currentIndex+1;}if(type===\"previous\"){if(repeat){return isFirstIndex?lastIndex:currentIndex-1;}return isFirstIndex?items.length:currentIndex-1;}return currentIndex;};const SetupMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",padding:\"40px 80px 40px 80px\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};addPropertyControls(Prev_Next,{collectionList:{title:\"Collection list\",type:ControlType.ComponentInstance},currentSlug:{title:\"Current slug\",type:ControlType.String},type:{title:\"Next/Previous\",type:ControlType.Enum,defaultValue:\"next\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\",options:[\"next\",\"previous\"],optionTitles:[\"Next\",\"Previous\"]},repeat:{type:ControlType.Boolean,title:\"Repeat\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"v2.0 \\n [via SegmentUI](https://www.segmentUI.com)\"}});Prev_Next.displayName=\"New Prev and Next item\";\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Prev_Next\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NextPrev.map", "// Generated by Framer (15813d8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,Link,PathVariablesContext,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import NewPrevAndNextItem from\"https://framerusercontent.com/modules/ro6bsImV7CNNdanh1oIE/uYRQLphJfwftksVpArKV/NextPrev.js\";import Images from\"https://framerusercontent.com/modules/KMRPiTxb5T4mx68jNZwQ/lNobvTEJAEqCtOj1aRym/yVXTeHj3t.js\";const MaterialFonts=getFonts(Material);const NewPrevAndNextItemFonts=getFonts(NewPrevAndNextItem);const cycleOrder=[\"wArgU0Q7a\",\"ynd2n2wid\"];const serializationHash=\"framer-laFTJ\";const variantClassNames={wArgU0Q7a:\"framer-v-yj60je\",ynd2n2wid:\"framer-v-cd012v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query=prequery=>prequery({from:{alias:\"default\",data:Images,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Next:\"ynd2n2wid\",Prev:\"wArgU0Q7a\"};const getProps=({height,id,slug,width,...props})=>{return{...props,TNkuq9T73:slug??props.TNkuq9T73??\";bwuifebuf\",variant:humanReadableVariantMap[props.variant]??props.variant??\"wArgU0Q7a\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TNkuq9T73,Xau1WGqgTwMEVlhhaC,idwMEVlhhaC,Xau1WGqgTSxzU7Ry9S,idSxzU7Ry9S,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wArgU0Q7a\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ynd2n2wid\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ynd2n2wid\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yj60je\",className,classNames),\"data-framer-name\":\"Prev\",layoutDependency:layoutDependency,layoutId:\"wArgU0Q7a\",ref:ref??ref1,style:{...style},...addPropertyOverrides({ynd2n2wid:{\"data-framer-name\":\"Next\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssj12q-container\",\"data-framer-name\":\"Prev\",layoutDependency:layoutDependency,layoutId:\"PqbzkWMhu-container\",name:\"Prev\",children:/*#__PURE__*/_jsx(NewPrevAndNextItem,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-at4qqz\",\"data-framer-name\":\"Prev\",layoutDependency:layoutDependency,layoutId:\"wMEVlhhaC\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Images,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"Xau1WGqgT\":Xau1WGqgTwMEVlhhaC,\"id\":idwMEVlhhaC},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`wMEVlhhaC-${idwMEVlhhaC}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Xau1WGqgT:Xau1WGqgTwMEVlhhaC},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTwMEVlhhaC},webPageId:\"XXjPR1bCv\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16hu0xz framer-14ck21i\",\"data-border\":true,\"data-framer-name\":\"Previous\",layoutDependency:layoutDependency,layoutId:\"pn4adY_i4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d24be52a-f949-4d5e-a70f-7aa7ab14b749, rgb(255, 255, 255))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y4g71u-container\",layoutDependency:layoutDependency,layoutId:\"DH_ujHiGk-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",height:\"100%\",iconSearch:\"arrow\",iconSelection:\"Home\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DH_ujHiGk\",layoutId:\"DH_ujHiGk\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idwMEVlhhaC);})})})})})],currentSlug:TNkuq9T73,height:\"100%\",id:\"PqbzkWMhu\",layoutId:\"PqbzkWMhu\",name:\"Prev\",repeat:true,type:\"previous\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14qcut4-container\",\"data-framer-name\":\"Next\",layoutDependency:layoutDependency,layoutId:\"R9dReT2w8-container\",name:\"Next\",children:/*#__PURE__*/_jsx(NewPrevAndNextItem,{collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gkxmdd\",\"data-framer-name\":\"Next\",layoutDependency:layoutDependency,layoutId:\"SxzU7Ry9S\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Images,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"Xau1WGqgT\":Xau1WGqgTSxzU7Ry9S,\"id\":idSxzU7Ry9S},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`SxzU7Ry9S-${idSxzU7Ry9S}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Xau1WGqgT:Xau1WGqgTSxzU7Ry9S},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTSxzU7Ry9S},webPageId:\"XXjPR1bCv\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-g6vzft framer-14ck21i\",\"data-border\":true,\"data-framer-name\":\"Previous\",layoutDependency:layoutDependency,layoutId:\"NJIU5vK8G\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d24be52a-f949-4d5e-a70f-7aa7ab14b749, rgb(255, 255, 255))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b1sigi-container\",layoutDependency:layoutDependency,layoutId:\"pTe6ZEDiP-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",height:\"100%\",iconSearch:\"arrow\",iconSelection:\"Home\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"pTe6ZEDiP\",layoutId:\"pTe6ZEDiP\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idSxzU7Ry9S);})})})})})],currentSlug:TNkuq9T73,height:\"100%\",id:\"R9dReT2w8\",layoutId:\"R9dReT2w8\",name:\"Next\",repeat:true,type:\"next\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-laFTJ.framer-14ck21i, .framer-laFTJ .framer-14ck21i { display: block; }\",\".framer-laFTJ.framer-yj60je { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-laFTJ .framer-1ssj12q-container, .framer-laFTJ .framer-14qcut4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-laFTJ .framer-at4qqz, .framer-laFTJ .framer-1gkxmdd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-laFTJ .framer-16hu0xz, .framer-laFTJ .framer-g6vzft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-laFTJ .framer-1y4g71u-container, .framer-laFTJ .framer-b1sigi-container { flex: none; height: 22px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-laFTJ.framer-yj60je, .framer-laFTJ .framer-at4qqz, .framer-laFTJ .framer-16hu0xz, .framer-laFTJ .framer-1gkxmdd, .framer-laFTJ .framer-g6vzft { gap: 0px; } .framer-laFTJ.framer-yj60je > *, .framer-laFTJ .framer-16hu0xz > *, .framer-laFTJ .framer-g6vzft > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-laFTJ.framer-yj60je > :first-child, .framer-laFTJ .framer-16hu0xz > :first-child, .framer-laFTJ .framer-g6vzft > :first-child { margin-left: 0px; } .framer-laFTJ.framer-yj60je > :last-child, .framer-laFTJ .framer-16hu0xz > :last-child, .framer-laFTJ .framer-g6vzft > :last-child { margin-right: 0px; } .framer-laFTJ .framer-at4qqz > *, .framer-laFTJ .framer-1gkxmdd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-laFTJ .framer-at4qqz > :first-child, .framer-laFTJ .framer-1gkxmdd > :first-child { margin-top: 0px; } .framer-laFTJ .framer-at4qqz > :last-child, .framer-laFTJ .framer-1gkxmdd > :last-child { margin-bottom: 0px; } }\",'.framer-laFTJ[data-border=\"true\"]::after, .framer-laFTJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 38\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ynd2n2wid\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TNkuq9T73\":\"slug\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjN_vBlAcR=withCSS(Component,css,\"framer-laFTJ\");export default FramerjN_vBlAcR;FramerjN_vBlAcR.displayName=\"New Design/Previous\\\\Next CMS Buttons\";FramerjN_vBlAcR.defaultProps={height:38,width:38};addPropertyControls(FramerjN_vBlAcR,{variant:{options:[\"wArgU0Q7a\",\"ynd2n2wid\"],optionTitles:[\"Prev\",\"Next\"],title:\"Variant\",type:ControlType.Enum},TNkuq9T73:{defaultValue:\";bwuifebuf\",title:\"Slug\",type:ControlType.String}});addFonts(FramerjN_vBlAcR,[{explicitInter:true,fonts:[]},...MaterialFonts,...NewPrevAndNextItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjN_vBlAcR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"TNkuq9T73\\\":\\\"slug\\\"}\",\"framerIntrinsicWidth\":\"38\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ynd2n2wid\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"38\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import FavouriteButton from\"https://framerusercontent.com/modules/Y1ZXBoo8yVz7K3MPQoYE/0c8UHO5Nn5WiOQhdWLWt/FavouriteButton.js\";import NewDesignPreviousNextCMSButtons from\"#framer/local/canvasComponent/jN_vBlAcR/jN_vBlAcR.js\";import NewDesignImageComponentGallerPage from\"#framer/local/canvasComponent/oDx92Zcqd/oDx92Zcqd.js\";import NewDesignButton from\"#framer/local/canvasComponent/UQWwFYnFr/UQWwFYnFr.js\";import SocialShare from\"#framer/local/codeFile/wcRONjB/SocialShare_withSlug.js\";import ArtistsCollection from\"#framer/local/collection/lHZQ1M_Bs/lHZQ1M_Bs.js\";import Images,{enumToDisplayNameFunctions}from\"#framer/local/collection/yVXTeHj3t/yVXTeHj3t.js\";import*as sharedStyle from\"#framer/local/css/c24ta49V_/c24ta49V_.js\";import*as sharedStyle1 from\"#framer/local/css/iS9MFm0dy/iS9MFm0dy.js\";import*as sharedStyle3 from\"#framer/local/css/lLzH75gzf/lLzH75gzf.js\";import*as sharedStyle4 from\"#framer/local/css/rv_5JXSey/rv_5JXSey.js\";import*as sharedStyle2 from\"#framer/local/css/yJxjjKTpV/yJxjjKTpV.js\";import metadataProvider from\"#framer/local/webPageMetadata/XXjPR1bCv/XXjPR1bCv.js\";const MaterialFonts=getFonts(Material);const NewDesignPreviousNextCMSButtonsFonts=getFonts(NewDesignPreviousNextCMSButtons);const FavouriteButtonFonts=getFonts(FavouriteButton);const SocialShareFonts=getFonts(SocialShare);const NewDesignButtonFonts=getFonts(NewDesignButton);const NewDesignImageComponentGallerPageFonts=getFonts(NewDesignImageComponentGallerPage);const breakpoints={I0Ktwn_2U:\"(min-width: 1440px)\",IgNQm4lnv:\"(min-width: 1200px) and (max-width: 1439px)\",ll4jHouc7:\"(max-width: 809px)\",vY_jKAuqm:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-08kYS\";const variantClassNames={I0Ktwn_2U:\"framer-v-1b0stmw\",IgNQm4lnv:\"framer-v-1mcgbjp\",ll4jHouc7:\"framer-v-163x802\",vY_jKAuqm:\"framer-v-owvjqy\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"IgNQm4lnv\",Desktop:\"I0Ktwn_2U\",Phone:\"ll4jHouc7\",Tablet:\"vY_jKAuqm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I0Ktwn_2U\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"XXjPR1bCv\",data:Images,type:\"Collection\"},select:[{collection:\"XXjPR1bCv\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"XXjPR1bCv\",name:\"JC0VcY4Mi\",type:\"Identifier\"},{collection:\"XXjPR1bCv\",name:\"a1MiaoMPz\",type:\"Identifier\"},{collection:\"XXjPR1bCv\",name:\"sw4LvKcWD\",type:\"Identifier\"},{collection:\"XXjPR1bCv\",name:\"r8ZY7PeiN\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"XXjPR1bCv\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,a1MiaoMPz=getFromCurrentRouteData(\"a1MiaoMPz\"),Xau1WGqgT=getFromCurrentRouteData(\"Xau1WGqgT\")??\"\",r8ZY7PeiN=getFromCurrentRouteData(\"r8ZY7PeiN\"),JC0VcY4Mi=getFromCurrentRouteData(\"JC0VcY4Mi\")??\"\",C32brNVjkVBCfAsMAU,XdS3Mtk70VBCfAsMAU,ve8AT76lwVBCfAsMAU,BORFJg8P4VBCfAsMAU,idVBCfAsMAU,a1MiaoMPzWRLacLemJ,Xau1WGqgTWRLacLemJ,JC0VcY4MiWRLacLemJ,idWRLacLemJ,sw4LvKcWD=getFromCurrentRouteData(\"sw4LvKcWD\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const textContent=suffix(suffix(suffix(enumToDisplayNameFunctions[\"r8ZY7PeiN\"]?.(r8ZY7PeiN,activeLocale),\" Tattoo\"),\" by \"),JC0VcY4Mi);const dynamicRef=useDynamicRefs();const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"I0Ktwn_2U\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ed4b6bea-569e-461e-a9c7-72653ac0a5db, rgb(247, 247, 247)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1b0stmw\",className),ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skfg81\",\"data-framer-name\":\"Main Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3932o\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gvohbb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 800px), 1px)`,...toResponsiveImage(a1MiaoMPz)}},vY_jKAuqm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 800px), 1px)`,...toResponsiveImage(a1MiaoMPz)}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+0+0+0),sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 800px), 1px)`,...toResponsiveImage(a1MiaoMPz)},className:\"framer-181v6tc\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ff0LndOvh\"},nodeId:\"KWO9niA7Q\",smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1mf2fnq framer-1023nd6\",\"data-border\":true,\"data-framer-name\":\"Close Button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jv7uhq-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",height:\"100%\",iconSearch:\"Close\",iconSelection:\"Home\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"SVxy4ylit\",layoutId:\"SVxy4ylit\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{y:(componentViewport?.y||0)+16+0+0+0+0+0+321.5638474295193}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"38px\",y:(componentViewport?.y||0)+24+0+0+0+0+0+356.00000000000017,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxlsbj-container\",\"data-framer-name\":\"Prev Button\",name:\"Prev Button\",children:/*#__PURE__*/_jsx(NewDesignPreviousNextCMSButtons,{height:\"100%\",id:\"uRl0wf9wV\",layoutId:\"uRl0wf9wV\",name:\"Prev Button\",style:{height:\"100%\",width:\"100%\"},TNkuq9T73:Xau1WGqgT,variant:\"wArgU0Q7a\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{y:(componentViewport?.y||0)+16+0+0+0+0+0+321.5638474295193}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"38px\",y:(componentViewport?.y||0)+24+0+0+0+0+0+356.00000000000017,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gsl0pj-container\",\"data-framer-name\":\"Next Button\",name:\"Next Button\",children:/*#__PURE__*/_jsx(NewDesignPreviousNextCMSButtons,{height:\"100%\",id:\"ZrIOJdgIf\",layoutId:\"ZrIOJdgIf\",name:\"Next Button\",style:{height:\"100%\",width:\"100%\"},TNkuq9T73:Xau1WGqgT,variant:\"ynd2n2wid\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1l7tqws\",\"data-styles-preset\":\"c24ta49V_\",style:{\"--framer-text-color\":\"var(--token-ed4b6bea-569e-461e-a9c7-72653ac0a5db, rgb(247, 247, 247))\"},children:\"N/A Tattoo by Abi Kishibe\"})}),className:\"framer-ilslwy\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jes3nd\"})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ar2ti6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2xdt8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VBCfAsMAU\",data:ArtistsCollection,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"VBCfAsMAU\",name:\"C32brNVjk\",type:\"Identifier\"},{collection:\"VBCfAsMAU\",name:\"XdS3Mtk70\",type:\"Identifier\"},{collection:\"VBCfAsMAU\",name:\"ve8AT76lw\",type:\"Identifier\"},{collection:\"VBCfAsMAU\",name:\"BORFJg8P4\",type:\"Identifier\"},{collection:\"VBCfAsMAU\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"VBCfAsMAU\",name:\"Os5gdiscc\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:JC0VcY4Mi},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BORFJg8P4:BORFJg8P4VBCfAsMAU,C32brNVjk:C32brNVjkVBCfAsMAU,id:idVBCfAsMAU,ve8AT76lw:ve8AT76lwVBCfAsMAU,XdS3Mtk70:XdS3Mtk70VBCfAsMAU},index)=>{XdS3Mtk70VBCfAsMAU??=\"\";ve8AT76lwVBCfAsMAU??=\"\";BORFJg8P4VBCfAsMAU??=\"\";const textContent1=suffix(suffix(XdS3Mtk70VBCfAsMAU,\" - \"),ve8AT76lwVBCfAsMAU);return /*#__PURE__*/_jsx(LayoutGroup,{id:`VBCfAsMAU-${idVBCfAsMAU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{BORFJg8P4:BORFJg8P4VBCfAsMAU},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3cn3go\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99qsoi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8d3kk4\",\"data-framer-name\":\"Artist Image Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+696+0+0+0+0+0+0+1),sizes:\"52px\",...toResponsiveImage(C32brNVjkVBCfAsMAU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+766+0+0+0+0+0+1),sizes:\"52px\",...toResponsiveImage(C32brNVjkVBCfAsMAU)},className:\"framer-1ygptnu\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fhrnw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1kmfpqh\",\"data-styles-preset\":\"iS9MFm0dy\",style:{\"--framer-text-color\":\"var(--token-1be6c72d-d5b5-4843-8617-864232ee8114, rgb(0, 0, 0))\"},children:\"Christopher Crawford\"})}),className:\"framer-179x32t\",fonts:[\"Inter\"],text:JC0VcY4Mi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gjkc97\",\"data-styles-preset\":\"yJxjjKTpV\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0.75)\"},children:\" - \"})}),className:\"framer-1umj2iy\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bbe6m2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11lsjjn\",\"data-border\":true,\"data-framer-name\":\"Save Image Button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4bwrxv-container\",children:/*#__PURE__*/_jsx(FavouriteButton,{cmsCollectionName:\"Images\",colors:{iconOff:\"rgb(145, 145, 145)\",iconOn:\"rgb(255, 0, 0)\",shadowOff:\"\",shadowOn:\"\"},customIcons:{imageOff:addImageAlt({src:\"https://framerusercontent.com/images/S2WuAwouXUVUp3WDfRqQodg.svg\",srcSet:\"https://framerusercontent.com/images/S2WuAwouXUVUp3WDfRqQodg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/S2WuAwouXUVUp3WDfRqQodg.svg 960w\"},\"\"),imageOn:addImageAlt({src:\"https://framerusercontent.com/images/TOGQdpUJBPtdkG6gSx0v1RG3RQ8.svg\",srcSet:\"https://framerusercontent.com/images/TOGQdpUJBPtdkG6gSx0v1RG3RQ8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/TOGQdpUJBPtdkG6gSx0v1RG3RQ8.svg 960w\"},\"\"),opacity:1,sizing:\"cover\",svgOff:'<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200\" />',svgOn:'<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200\" />',type:\"image\"},height:\"100%\",iconSize:24,id:\"NwVnPuiVf\",layoutId:\"NwVnPuiVf\",padding:4,paddingBottom:4,paddingIsMixed:false,paddingLeft:4,paddingRight:4,paddingTop:4,radius:24,radiusBottomLeft:24,radiusBottomRight:24,radiusIsMixed:false,radiusTopLeft:24,radiusTopRight:24,slug:Xau1WGqgT,transition:{delay:0,duration:.15,ease:[0,.6,.5,1],type:\"tween\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hcw2k\",\"data-border\":true,\"data-framer-name\":\"Share Button\",id:`${BORFJg8P4VBCfAsMAU}-11hcw2k`,onMouseEnter:onMouseEntertxyyif({overlay}),ref:dynamicRef(`${BORFJg8P4VBCfAsMAU}-11hcw2k`),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rck1r0-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",height:\"100%\",iconSearch:\"send\",iconSelection:\"Home\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"QerTWxX0j\",layoutId:\"QerTWxX0j\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:dynamicRef(`${BORFJg8P4VBCfAsMAU}-11hcw2k`),className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${BORFJg8P4VBCfAsMAU}-11hcw2k`,offsetX:0,offsetY:4,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sob01e\",ref:dynamicRef(`${BORFJg8P4VBCfAsMAU}-1sob01e`),role:\"dialog\",children:/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:\"framer-u0ycij\",\"data-border\":true,\"data-framer-name\":\"Social Buttons\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17fxjpd\",\"data-styles-preset\":\"lLzH75gzf\",style:{\"--framer-text-color\":\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\"},children:\"Share on:\"})}),className:\"framer-1h7mvlr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jvx7yh-container\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",fillColorType:\"brand\",fillOpacity:0,iconColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"zfSNILkfi\",layoutId:\"zfSNILkfi\",newTab:true,padding:6,paddingBottom:6,paddingIsMixed:false,paddingLeft:6,paddingRight:6,paddingTop:6,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"url\",shareUrl:\"https://www.animetattoos.com/gallery/\",type:\"facebook\",urlSlug:Xau1WGqgT,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ukjlze-container\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",fillColorType:\"brand\",fillOpacity:0,iconColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"exlo1EKor\",layoutId:\"exlo1EKor\",newTab:true,padding:6,paddingBottom:6,paddingIsMixed:false,paddingLeft:6,paddingRight:6,paddingTop:6,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"url\",shareUrl:\"https://www.animetattoos.com/gallery/\",type:\"twitter\",urlSlug:Xau1WGqgT,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dh2dan-container\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",fillColorType:\"brand\",fillOpacity:0,iconColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"fplfx9o9a\",layoutId:\"fplfx9o9a\",newTab:true,padding:6,paddingBottom:6,paddingIsMixed:false,paddingLeft:6,paddingRight:6,paddingTop:6,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"url\",shareUrl:\"https://www.animetattoos.com/gallery/\",type:\"whatsApp\",urlSlug:Xau1WGqgT,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1itazsm-container\",children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",fillColorType:\"brand\",fillOpacity:0,iconColor:\"var(--token-9d529bb7-4a0e-466d-b928-caceca30e41e, rgb(62, 62, 62))\",iconColorType:\"custom\"},height:\"100%\",iconSize:20,id:\"R0t3rok0x\",layoutId:\"R0t3rok0x\",newTab:true,padding:6,paddingBottom:6,paddingIsMixed:false,paddingLeft:6,paddingRight:6,paddingTop:6,radius:8,radiusBottomLeft:8,radiusBottomRight:8,radiusIsMixed:false,radiusTopLeft:8,radiusTopRight:8,shareLink:\"url\",shareUrl:\"https://www.animetattoos.com/gallery/\",type:\"copyUrl\",urlSlug:Xau1WGqgT,width:\"100%\"})})})]})})})})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{BORFJg8P4:BORFJg8P4VBCfAsMAU},webPageId:\"Wg1SjXZ8p\"},implicitPathVariables:undefined},{href:{pathVariables:{BORFJg8P4:BORFJg8P4VBCfAsMAU},webPageId:\"Wg1SjXZ8p\"},implicitPathVariables:undefined},{href:{pathVariables:{BORFJg8P4:BORFJg8P4VBCfAsMAU},webPageId:\"Wg1SjXZ8p\"},implicitPathVariables:undefined},{href:{pathVariables:{BORFJg8P4:BORFJg8P4VBCfAsMAU},webPageId:\"Wg1SjXZ8p\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 800px), 1px) - 120px, 1px)`,y:(componentViewport?.y||0)+16+0+0+696+0+0+0+0+66+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"188px\",y:(componentViewport?.y||0)+24+0+0+766+0+0+0+8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5v8mv7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IgNQm4lnv:{dJStPlAtR:resolvedLinks[1]},ll4jHouc7:{dJStPlAtR:resolvedLinks[3]},vY_jKAuqm:{dJStPlAtR:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(NewDesignButton,{dJStPlAtR:resolvedLinks[0],height:\"100%\",id:\"ANDn5kOor\",layoutId:\"ANDn5kOor\",style:{height:\"100%\",width:\"100%\"},tFhHCyGPd:\"View Profile\",variant:\"mt9xMpZLo\",width:\"100%\"})})})})})})]})]})})},idVBCfAsMAU);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgt1gz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-rfku07\",\"data-styles-preset\":\"rv_5JXSey\",children:\"Similar tattoos\"})}),className:\"framer-5bapua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rcedfu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{query:{from:{alias:\"WRLacLemJ\",data:Images,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"WRLacLemJ\",name:\"a1MiaoMPz\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"JC0VcY4Mi\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"WRLacLemJ\",name:\"Xau1WGqgT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Xau1WGqgT},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"WRLacLemJ\",name:\"sw4LvKcWD\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:sw4LvKcWD},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WRLacLemJ\",name:\"r8ZY7PeiN\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:r8ZY7PeiN},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WRLacLemJ\",data:Images,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"WRLacLemJ\",name:\"a1MiaoMPz\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"Xau1WGqgT\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"JC0VcY4Mi\",type:\"Identifier\"},{collection:\"WRLacLemJ\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"WRLacLemJ\",name:\"Xau1WGqgT\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Xau1WGqgT},type:\"BinaryOperation\"}},operator:\"and\",right:{left:{collection:\"WRLacLemJ\",name:\"sw4LvKcWD\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:sw4LvKcWD},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"WRLacLemJ\",name:\"r8ZY7PeiN\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:r8ZY7PeiN},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({a1MiaoMPz:a1MiaoMPzWRLacLemJ,id:idWRLacLemJ,JC0VcY4Mi:JC0VcY4MiWRLacLemJ,Xau1WGqgT:Xau1WGqgTWRLacLemJ},index1)=>{Xau1WGqgTWRLacLemJ??=\"\";JC0VcY4MiWRLacLemJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WRLacLemJ-${idWRLacLemJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Xau1WGqgT:Xau1WGqgTWRLacLemJ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTWRLacLemJ},webPageId:\"XXjPR1bCv\"},implicitPathVariables:undefined},{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTWRLacLemJ},webPageId:\"XXjPR1bCv\"},implicitPathVariables:undefined},{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTWRLacLemJ},webPageId:\"XXjPR1bCv\"},implicitPathVariables:undefined},{href:{pathVariables:{Xau1WGqgT:Xau1WGqgTWRLacLemJ},webPageId:\"XXjPR1bCv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ll4jHouc7:{width:`max(min(${componentViewport?.width||\"100vw\"}, 800px) - 32px, 50px)`,y:(componentViewport?.y||0)+16+0+0+900.4+0+0},vY_jKAuqm:{width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 80px) / 3, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 32px) / 3, 50px)`,y:(componentViewport?.y||0)+24+0+0+948.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ddimfb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IgNQm4lnv:{DDUBMLCSe:resolvedLinks1[1]},ll4jHouc7:{DDUBMLCSe:resolvedLinks1[3],variant:\"YSviiEb6u\",Xh27qA4Rp:\"nuCH7shWP\"},vY_jKAuqm:{DDUBMLCSe:resolvedLinks1[2],variant:\"YSviiEb6u\",Xh27qA4Rp:\"nuCH7shWP\"}},children:/*#__PURE__*/_jsx(NewDesignImageComponentGallerPage,{BL8xj0T9A:JC0VcY4MiWRLacLemJ,DDUBMLCSe:resolvedLinks1[0],height:\"100%\",id:\"EMdIqfqrM\",layoutId:\"EMdIqfqrM\",Ljt2NNX7T:false,nq2pKACzy:Xau1WGqgTWRLacLemJ,qXnJPKPth:toResponsiveImage(a1MiaoMPzWRLacLemJ),rs3Jf1FRF:\"Images\",style:{height:\"100%\",width:\"100%\"},variant:\"tZ574aFcU\",width:\"100%\",Xh27qA4Rp:\"pflSglapo\"})})})})})})})},idWRLacLemJ);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-08kYS.framer-1023nd6, .framer-08kYS .framer-1023nd6 { display: block; }\",\".framer-08kYS.framer-1b0stmw { align-content: center; align-items: center; background-color: var(--token-ed4b6bea-569e-461e-a9c7-72653ac0a5db, #f7f7f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 1440px; }\",\".framer-08kYS .framer-1skfg81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-08kYS .framer-y3932o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 75vh; justify-content: center; max-height: 760px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-08kYS .framer-gvohbb { align-content: center; align-items: center; box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-08kYS .framer-181v6tc { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-08kYS .framer-1mf2fnq { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; left: 16px; overflow: hidden; padding: 0px; position: absolute; text-decoration: none; top: 16px; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-1jv7uhq-container, .framer-08kYS .framer-rck1r0-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-08kYS .framer-qxlsbj-container { flex: none; height: 38px; left: 16px; position: absolute; top: calc(50.00000000000002% - 38px / 2); width: 38px; }\",\".framer-08kYS .framer-1gsl0pj-container { flex: none; height: 38px; position: absolute; right: 16px; top: calc(50.00000000000002% - 38px / 2); width: 38px; }\",\".framer-08kYS .framer-ilslwy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 12px; flex: none; height: auto; left: 12px; position: absolute; right: 12px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-08kYS .framer-jes3nd { background: linear-gradient(180deg, rgba(84, 84, 84, 0) 83%, rgba(0, 0, 0, 0.5) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-1ar2ti6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 800px; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-08kYS .framer-1p2xdt8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-08kYS .framer-3cn3go { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-08kYS .framer-99qsoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-08kYS .framer-8d3kk4 { aspect-ratio: 1 / 1; background-color: rgba(0, 0, 0, 0.25); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: hidden; position: relative; width: 54px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-08kYS .framer-1ygptnu { border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-2fhrnw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-08kYS .framer-179x32t, .framer-08kYS .framer-1umj2iy, .framer-08kYS .framer-1h7mvlr, .framer-08kYS .framer-5bapua { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-08kYS .framer-bbe6m2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 276px; }\",\".framer-08kYS .framer-11lsjjn { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-4bwrxv-container, .framer-08kYS .framer-1jvx7yh-container, .framer-08kYS .framer-ukjlze-container, .framer-08kYS .framer-1dh2dan-container, .framer-08kYS .framer-1itazsm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-08kYS .framer-11hcw2k { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 2px; position: relative; width: 38px; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-1sob01e { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-08kYS .framer-u0ycij { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 6px 4px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-08kYS .framer-5v8mv7-container { flex: 1 0 0px; height: 38px; position: relative; width: 1px; }\",\".framer-08kYS .framer-sgt1gz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-08kYS .framer-1rcedfu { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; max-width: 800px; padding: 0px; position: relative; width: 100%; }\",\".framer-08kYS .framer-ddimfb-container { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 256px); justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-08kYS.framer-1b0stmw, .framer-08kYS .framer-1skfg81, .framer-08kYS .framer-y3932o, .framer-08kYS .framer-gvohbb, .framer-08kYS .framer-1mf2fnq, .framer-08kYS .framer-1p2xdt8, .framer-08kYS .framer-99qsoi, .framer-08kYS .framer-2fhrnw, .framer-08kYS .framer-bbe6m2, .framer-08kYS .framer-11lsjjn, .framer-08kYS .framer-11hcw2k, .framer-08kYS .framer-1sob01e, .framer-08kYS .framer-u0ycij, .framer-08kYS .framer-sgt1gz { gap: 0px; } .framer-08kYS.framer-1b0stmw > *, .framer-08kYS .framer-1skfg81 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-08kYS.framer-1b0stmw > :first-child, .framer-08kYS .framer-1skfg81 > :first-child, .framer-08kYS .framer-1p2xdt8 > :first-child, .framer-08kYS .framer-2fhrnw > :first-child, .framer-08kYS .framer-1sob01e > :first-child, .framer-08kYS .framer-sgt1gz > :first-child { margin-top: 0px; } .framer-08kYS.framer-1b0stmw > :last-child, .framer-08kYS .framer-1skfg81 > :last-child, .framer-08kYS .framer-1p2xdt8 > :last-child, .framer-08kYS .framer-2fhrnw > :last-child, .framer-08kYS .framer-1sob01e > :last-child, .framer-08kYS .framer-sgt1gz > :last-child { margin-bottom: 0px; } .framer-08kYS .framer-y3932o > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-08kYS .framer-y3932o > :first-child, .framer-08kYS .framer-gvohbb > :first-child, .framer-08kYS .framer-1mf2fnq > :first-child, .framer-08kYS .framer-99qsoi > :first-child, .framer-08kYS .framer-bbe6m2 > :first-child, .framer-08kYS .framer-11lsjjn > :first-child, .framer-08kYS .framer-11hcw2k > :first-child, .framer-08kYS .framer-u0ycij > :first-child { margin-left: 0px; } .framer-08kYS .framer-y3932o > :last-child, .framer-08kYS .framer-gvohbb > :last-child, .framer-08kYS .framer-1mf2fnq > :last-child, .framer-08kYS .framer-99qsoi > :last-child, .framer-08kYS .framer-bbe6m2 > :last-child, .framer-08kYS .framer-11lsjjn > :last-child, .framer-08kYS .framer-11hcw2k > :last-child, .framer-08kYS .framer-u0ycij > :last-child { margin-right: 0px; } .framer-08kYS .framer-gvohbb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-08kYS .framer-1mf2fnq > *, .framer-08kYS .framer-11lsjjn > *, .framer-08kYS .framer-11hcw2k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-08kYS .framer-1p2xdt8 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-08kYS .framer-99qsoi > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-08kYS .framer-2fhrnw > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-08kYS .framer-bbe6m2 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-08kYS .framer-1sob01e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-08kYS .framer-u0ycij > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-08kYS .framer-sgt1gz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-08kYS[data-border=\"true\"]::after, .framer-08kYS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-08kYS.framer-1b0stmw { width: 1200px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-08kYS.framer-1b0stmw { width: 810px; } .framer-08kYS .framer-y3932o, .framer-08kYS .framer-sgt1gz, .framer-08kYS .framer-1rcedfu { padding: 0px 24px 0px 24px; } .framer-08kYS .framer-1ar2ti6 { padding: 0px 24px 60px 24px; } .framer-08kYS .framer-ddimfb-container { height: var(--framer-aspect-ratio-supported, 200px); }}\",\"@media (max-width: 809px) { .framer-08kYS.framer-1b0stmw { padding: 16px 0px 16px 0px; width: 390px; } .framer-08kYS .framer-y3932o { height: 68vh; padding: 0px 16px 0px 16px; } .framer-08kYS .framer-1mf2fnq { left: 12px; top: 12px; } .framer-08kYS .framer-qxlsbj-container { left: 12px; top: calc(50.08291873963518% - 38px / 2); } .framer-08kYS .framer-1gsl0pj-container { right: 12px; top: calc(50.08291873963518% - 38px / 2); } .framer-08kYS .framer-ilslwy { --framer-text-wrap-override: balance; } .framer-08kYS .framer-1ar2ti6 { padding: 0px 0px 32px 0px; } .framer-08kYS .framer-3cn3go { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; justify-content: flex-start; padding: 0px 16px 0px 16px; } .framer-08kYS .framer-bbe6m2 { width: 100%; } .framer-08kYS .framer-11lsjjn { order: 1; } .framer-08kYS .framer-11hcw2k { order: 2; } .framer-08kYS .framer-5v8mv7-container { order: 0; } .framer-08kYS .framer-sgt1gz { max-width: 540px; padding: 0px 16px 0px 16px; } .framer-08kYS .framer-1rcedfu { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px 16px 0px 16px; } .framer-08kYS .framer-ddimfb-container { height: var(--framer-aspect-ratio-supported, 200px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-08kYS .framer-3cn3go { gap: 0px; } .framer-08kYS .framer-3cn3go > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-08kYS .framer-3cn3go > :first-child { margin-top: 0px; } .framer-08kYS .framer-3cn3go > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1400\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IgNQm4lnv\":{\"layout\":[\"fixed\",\"auto\"]},\"vY_jKAuqm\":{\"layout\":[\"fixed\",\"auto\"]},\"ll4jHouc7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerXXjPR1bCv=withCSS(Component,css,\"framer-08kYS\");export default FramerXXjPR1bCv;FramerXXjPR1bCv.displayName=\"Images\";FramerXXjPR1bCv.defaultProps={height:1400,width:1440};addFonts(FramerXXjPR1bCv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MaterialFonts,...NewDesignPreviousNextCMSButtonsFonts,...FavouriteButtonFonts,...SocialShareFonts,...NewDesignButtonFonts,...NewDesignImageComponentGallerPageFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXXjPR1bCv\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IgNQm4lnv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vY_jKAuqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ll4jHouc7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["findQueryInProps", "obj", "key", "result", "updateQueryInProps", "newQuery", "updatedChild", "Prev_Next", "props", "_props_collectionList", "_props_collectionList1", "_props_collectionList2", "type", "currentSlug", "repeat", "style", "p", "SetupMessage", "collectionList", "isCanvas", "RenderTarget", "newCollectionList", "setNewCollectionList", "ye", "query", "findQueryInProps", "queryWithoutLimitAndOffset", "queryData", "useQueryData", "ue", "currentIndex", "findIndex", "newOffset", "getNewOffset", "updateQueryInProps", "data", "item", "items", "lastIndex", "isLastIndex", "isFirstIndex", "title", "description", "containerStyle", "u", "addPropertyControls", "ControlType", "MaterialFonts", "getFonts", "Icon", "NewPrevAndNextItemFonts", "Prev_Next", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "slug", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TNkuq9T73", "Xau1WGqgTwMEVlhhaC", "idwMEVlhhaC", "Xau1WGqgTSxzU7Ry9S", "idSxzU7Ry9S", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Prev_Next", "ChildrenCanSuspend", "QueryData", "yVXTeHj3t_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "Icon", "collection1", "paginationInfo1", "loadMore1", "css", "FramerjN_vBlAcR", "withCSS", "jN_vBlAcR_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "NewPrevAndNextItemFonts", "MaterialFonts", "getFonts", "Icon", "NewDesignPreviousNextCMSButtonsFonts", "jN_vBlAcR_default", "FavouriteButtonFonts", "FavouriteButton", "SocialShareFonts", "SocialShare", "NewDesignButtonFonts", "UQWwFYnFr_default", "NewDesignImageComponentGallerPageFonts", "oDx92Zcqd_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "suffix", "addImageAlt", "image", "alt", "transition1", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "yVXTeHj3t_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "a1MiaoMPz", "Xau1WGqgT", "r8ZY7PeiN", "JC0VcY4Mi", "C32brNVjkVBCfAsMAU", "XdS3Mtk70VBCfAsMAU", "ve8AT76lwVBCfAsMAU", "BORFJg8P4VBCfAsMAU", "idVBCfAsMAU", "a1MiaoMPzWRLacLemJ", "Xau1WGqgTWRLacLemJ", "JC0VcY4MiWRLacLemJ", "idWRLacLemJ", "sw4LvKcWD", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "textContent", "enumToDisplayNameFunctions", "dynamicRef", "useDynamicRefs", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "Link", "ComponentViewportProvider", "Container", "Icon", "jN_vBlAcR_default", "RichText2", "x", "ChildrenCanSuspend", "lHZQ1M_Bs_default", "collection", "paginationInfo", "l", "index", "textContent1", "PathVariablesContext", "FavouriteButton", "AnimatePresence", "Floating", "SocialShare", "ResolveLinks", "resolvedLinks", "UQWwFYnFr_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "oDx92Zcqd_default", "css", "FramerXXjPR1bCv", "withCSS", "XXjPR1bCv_default", "addFonts", "MaterialFonts", "NewDesignPreviousNextCMSButtonsFonts", "FavouriteButtonFonts", "SocialShareFonts", "NewDesignButtonFonts", "NewDesignImageComponentGallerPageFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
