{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/C8cKI4RVHAhahD3zUnwf/4NK3JST06Eq1KRg0BwrQ/YfFLwnctc.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nhEx88NR9P29UunBYMSY/LkGINd3L3uGVaU8EvPfI/mg7LYZ0Yq.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lujapUlvqdLavcM6zGHK/t3GNkX8xzrttjmRt1WYY/rVFQGAL32.js\";import ColiboButton from\"https://framerusercontent.com/modules/6V7wLNDsxs7YNuDHZ7q7/obTR2DeWeEz820TdxdMG/Yg2GKFy64.js\";const DownloadFonts=getFonts(Download);const ColiboButtonFonts=getFonts(ColiboButton);const DownloadControls=getPropertyControls(Download);const cycleOrder=[\"SrCmAhUH4\",\"wogzpL3HR\"];const serializationHash=\"framer-73r1B\";const variantClassNames={SrCmAhUH4:\"framer-v-xsa3f3\",wogzpL3HR:\"framer-v-1am0av\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};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.create(React.Fragment);const humanReadableVariantMap={Laptop:\"SrCmAhUH4\",Mobile:\"wogzpL3HR\"};const getProps=({background,buttonLinkNotForDownload,buttonText,downloadFile,height,id,image,isItADownload,subtitle,title,width,...props})=>{return{...props,bjT9Kt9y9:background??props.bjT9Kt9y9??\"var(--token-6663449d-6470-421b-9424-bd1b83f2c13b, rgb(255, 236, 139))\",CIjDmNF6v:buttonText??props.CIjDmNF6v??\"L\\xe6s Tjeklisten \",EdJjYmCmp:title??props.EdJjYmCmp??\"Hvad skal et intranet indeholde i 2025?\",HNyZxGBIW:isItADownload??props.HNyZxGBIW??true,nMvPolZ5L:image??props.nMvPolZ5L??{pixelHeight:680,pixelWidth:906,src:\"https://framerusercontent.com/images/gEFtb2iAWPzInOIe8DWjcxzguc.png\",srcSet:\"https://framerusercontent.com/images/gEFtb2iAWPzInOIe8DWjcxzguc.png?scale-down-to=512 512w,https://framerusercontent.com/images/gEFtb2iAWPzInOIe8DWjcxzguc.png 906w\"},uI2oUkpTD:downloadFile??props.uI2oUkpTD??\"https://framerusercontent.com/assets/BRWmo8a2OkNYXcZJc1PGPxJbCZg.pdf\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SrCmAhUH4\",VjOqvOYJT:subtitle??props.VjOqvOYJT??\"Skal I skifte intranet i \\xe5r? Hold jer opdateret p\\xe5 de nyeste krav og trends. Fra brugeroplevelse og kommunikation til sikkerhed og compliance.\",vN5KmciXz:buttonLinkNotForDownload??props.vN5KmciXz};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,nMvPolZ5L,VjOqvOYJT,EdJjYmCmp,HNyZxGBIW,CIjDmNF6v,vN5KmciXz,bjT9Kt9y9,uI2oUkpTD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SrCmAhUH4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(HNyZxGBIW);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(scopingClassNames,\"framer-xsa3f3\",className,classNames),\"data-framer-name\":\"Laptop\",layoutDependency:layoutDependency,layoutId:\"SrCmAhUH4\",ref:refBinding,style:{backgroundColor:bjT9Kt9y9,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({wogzpL3HR:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11mjolj\",layoutDependency:layoutDependency,layoutId:\"CHpCpmxoh\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(40+((componentViewport?.height||460)-80-380)/2)+0),pixelHeight:680,pixelWidth:906,sizes:`max((${componentViewport?.width||\"100vw\"} - 142px) / 2, 1px)`,...toResponsiveImage(nMvPolZ5L),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ncucrs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"oxm4awbml\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({wogzpL3HR:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+(((componentViewport?.height||728)-80-694)/2+0+0)+20),pixelHeight:680,pixelWidth:906,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(nMvPolZ5L),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7pob4\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"PCY2x4wLR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-187iwlp\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"MmyGvxPyJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mq6zfp\",\"data-styles-preset\":\"mg7LYZ0Yq\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0)))\"},children:\"God arbejdslyst kr\\xe6ver involvering\u200B\"})}),className:\"framer-1aslbpj\",\"data-framer-name\":\"God arbejdslyst kr\\xe6ver involvering\u200B\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M96f7yxbG\",style:{\"--extracted-a0htzi\":\"var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},text:EdJjYmCmp,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wogzpL3HR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mq6zfp\",\"data-styles-preset\":\"mg7LYZ0Yq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0)))\"},children:\"God arbejdslyst kr\\xe6ver involvering\u200B\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1etxawn\",\"data-styles-preset\":\"rVFQGAL32\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fea08e2-43d6-4946-8326-5c9fdef73c21, rgb(87, 87, 87)))\"},children:\"Trivsel der kan m\\xe5les\"})}),className:\"framer-18945ui\",\"data-framer-name\":\"Trivsel der kan m\\xe5les\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LTUIP_6e1\",style:{\"--extracted-r6o4lv\":\"var(--token-4fea08e2-43d6-4946-8326-5c9fdef73c21, rgb(87, 87, 87))\",\"--framer-paragraph-spacing\":\"0px\"},text:VjOqvOYJT,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wogzpL3HR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1etxawn\",\"data-styles-preset\":\"rVFQGAL32\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fea08e2-43d6-4946-8326-5c9fdef73c21, rgb(87, 87, 87)))\"},children:\"Trivsel der kan m\\xe5les\"})})}},baseVariant,gestureVariant)})]}),HNyZxGBIW&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g05r50-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R5Ly3M3oy-container\",nodeId:\"R5Ly3M3oy\",rendersWithMotion:true,scopeId:\"YfFLwnctc\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-e26bc691-892a-42a9-9499-e62514752250, rgb(255, 221, 221))\",color:\"var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0))\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"R5Ly3M3oy\",layoutId:\"R5Ly3M3oy\",srcFile:uI2oUkpTD,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-b0691a56-0195-4143-b338-07efb4822335, rgb(255, 255, 255))\",borderRadius:8,color:\"var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0))\",gap:5,padding:10,paddingBottom:18,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:18},text:CIjDmNF6v,width:\"100%\",...addPropertyOverrides({wogzpL3HR:{fontControl:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+(40+((componentViewport?.height||460)-80-312)/2)+0+352,...addPropertyOverrides({wogzpL3HR:{y:(componentViewport?.y||0)+20+(((componentViewport?.height||728)-80-694)/2+320+62)+0+352}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x9xhs5-container\",layoutDependency:layoutDependency,layoutId:\"OI7Vy7Nsl-container\",nodeId:\"OI7Vy7Nsl\",rendersWithMotion:true,scopeId:\"YfFLwnctc\",children:/*#__PURE__*/_jsx(ColiboButton,{BlJNMfRrN:true,FoDcRiZbb:\"var(--token-e26bc691-892a-42a9-9499-e62514752250, rgb(255, 221, 221))\",fzPQj5vxM:vN5KmciXz,height:\"100%\",icFgveKzp:\"arrow-right\",id:\"OI7Vy7Nsl\",Jtaop7Maz:true,layoutId:\"OI7Vy7Nsl\",mVDFUq6F9:\"0px 2px 5px 0px rgba(0, 0, 0, 0.25)\",pK88wvZzW:\"var(--token-b0691a56-0195-4143-b338-07efb4822335, rgb(255, 255, 255))\",qWQ35JEj6:CIjDmNF6v,variant:\"jD98a9N8B\",width:\"100%\",y_jUbrVHI:\"var(--token-15474289-ca4b-417d-a86b-af0a34f9c2f7, rgb(0, 0, 0))\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-73r1B.framer-3d5akk, .framer-73r1B .framer-3d5akk { display: block; }\",\".framer-73r1B.framer-xsa3f3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1224px; }\",\".framer-73r1B .framer-11mjolj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 380px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-73r1B .framer-1ncucrs { flex: none; height: 100%; max-width: 100%; position: relative; width: 100%; }\",\".framer-73r1B .framer-1k7pob4 { 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; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-73r1B .framer-187iwlp { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-73r1B .framer-1aslbpj, .framer-73r1B .framer-18945ui { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-73r1B .framer-g05r50-container, .framer-73r1B .framer-1x9xhs5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-73r1B.framer-v-1am0av.framer-xsa3f3 { flex-direction: column; padding: 20px 20px 60px 20px; width: 509px; }\",\".framer-73r1B.framer-v-1am0av .framer-11mjolj { flex: none; height: 320px; width: 100%; }\",\".framer-73r1B.framer-v-1am0av .framer-1ncucrs { height: 280px; }\",\".framer-73r1B.framer-v-1am0av .framer-1k7pob4 { align-content: center; align-items: center; flex: none; width: 100%; }\",\".framer-73r1B.framer-v-1am0av .framer-g05r50-container { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 460\n * @framerIntrinsicWidth 1224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wogzpL3HR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"nMvPolZ5L\":\"image\",\"VjOqvOYJT\":\"subtitle\",\"EdJjYmCmp\":\"title\",\"HNyZxGBIW\":\"isItADownload\",\"CIjDmNF6v\":\"buttonText\",\"vN5KmciXz\":\"buttonLinkNotForDownload\",\"bjT9Kt9y9\":\"background\",\"uI2oUkpTD\":\"downloadFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYfFLwnctc=withCSS(Component,css,\"framer-73r1B\");export default FramerYfFLwnctc;FramerYfFLwnctc.displayName=\"Colibo/CTA Ebook\";FramerYfFLwnctc.defaultProps={height:460,width:1224};addPropertyControls(FramerYfFLwnctc,{variant:{options:[\"SrCmAhUH4\",\"wogzpL3HR\"],optionTitles:[\"Laptop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},nMvPolZ5L:{__defaultAssetReference:\"data:framer/asset-reference,gEFtb2iAWPzInOIe8DWjcxzguc.png?originalFilename=Checklist-mockup.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},VjOqvOYJT:{defaultValue:\"Skal I skifte intranet i \\xe5r? Hold jer opdateret p\\xe5 de nyeste krav og trends. Fra brugeroplevelse og kommunikation til sikkerhed og compliance.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},EdJjYmCmp:{defaultValue:\"Hvad skal et intranet indeholde i 2025?\",displayTextArea:false,title:\"Title\",type:ControlType.String},HNyZxGBIW:{defaultValue:true,title:\"Is it a Download?\",type:ControlType.Boolean},CIjDmNF6v:{defaultValue:\"L\\xe6s Tjeklisten \",displayTextArea:false,placeholder:\"\",title:\"Button Text\",type:ControlType.String},vN5KmciXz:{title:\"Button Link (not for download)\",type:ControlType.Link},bjT9Kt9y9:{defaultValue:'var(--token-6663449d-6470-421b-9424-bd1b83f2c13b, rgb(255, 236, 139)) /* {\"name\":\"Theme Color 03\"} */',title:\"Background\",type:ControlType.Color},uI2oUkpTD:DownloadControls?.[\"srcFile\"]&&{...DownloadControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,BRWmo8a2OkNYXcZJc1PGPxJbCZg.pdf?originalFilename=Colibo+-+Rapport_Digital_Trivsel.pdf\",description:undefined,hidden:undefined,title:\"Download File\"}});addFonts(FramerYfFLwnctc,[{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\"}]},...DownloadFonts,...ColiboButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYfFLwnctc\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wogzpL3HR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"460\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1224\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"nMvPolZ5L\\\":\\\"image\\\",\\\"VjOqvOYJT\\\":\\\"subtitle\\\",\\\"EdJjYmCmp\\\":\\\"title\\\",\\\"HNyZxGBIW\\\":\\\"isItADownload\\\",\\\"CIjDmNF6v\\\":\\\"buttonText\\\",\\\"vN5KmciXz\\\":\\\"buttonLinkNotForDownload\\\",\\\"bjT9Kt9y9\\\":\\\"background\\\",\\\"uI2oUkpTD\\\":\\\"downloadFile\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YfFLwnctc.map"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "DownloadFonts", "getFonts", "Download", "ColiboButtonFonts", "Yg2GKFy64_default", "DownloadControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "negate", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "buttonLinkNotForDownload", "buttonText", "downloadFile", "height", "id", "image", "isItADownload", "subtitle", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nMvPolZ5L", "VjOqvOYJT", "EdJjYmCmp", "HNyZxGBIW", "CIjDmNF6v", "vN5KmciXz", "bjT9Kt9y9", "uI2oUkpTD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "visible", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerYfFLwnctc", "withCSS", "YfFLwnctc_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
