{"version":3,"file":"components-richTextWithGreyCardRight-richTextWithGreyCardRight-8b5fc623d8dfd6a4e21b.js","mappings":"gNA6DA,UAvDkC,SAAC,GAAqB,IAAD,MAAlBA,EAAkB,EAAlBA,YAC7BC,EAAmB,CACvBC,YAAU,OACPC,EAAAA,OAAAA,WAAmB,SAACC,EAAMC,GAAP,OAClB,gBAAC,WAAD,KAAkBA,IAFZ,EAIPF,EAAAA,OAAAA,WAAmB,SAACC,EAAMC,GAAP,OAClB,gBAAC,WAAD,KAAkBA,IALZ,EAOPF,EAAAA,OAAAA,WAAmB,SAACC,EAAMC,GAAP,OAClB,gBAAC,YAAD,KAAmBA,IARb,EAUPF,EAAAA,OAAAA,WAAmB,SAACC,EAAMC,GAAP,OAClB,gBAAC,WAAD,KAAkBA,IAXZ,EAaPF,EAAAA,OAAAA,SAAiB,SAACC,EAAMC,GAAP,OAChB,gBAAC,gBAAD,KAAuBA,IAdjB,EAgBPF,EAAAA,OAAAA,WAAmB,SAACC,EAAMC,GAAP,OAClB,gBAAC,WAAD,KAAkBA,IAjBZ,EAmBPC,EAAAA,QAAAA,WAAoB,SAACF,EAAMC,GAAP,mBACnB,gBAAC,cAAD,CACEE,MACEC,EAAAA,EAAAA,IAAkBJ,MAAAA,GAAD,UAACA,EAAMK,YAAP,aAAC,EAAYC,KAC1BN,MAAAA,GADJ,UACIA,EAAMK,YADV,aACI,EAAYC,KACZC,EAAAA,EAAAA,IAAiBC,kCAAgCR,MAAAA,GAAhC,UAAgCA,EAAMK,YAAtC,aAAgC,EAAYC,MAEnEG,QAAQC,EAAAA,EAAAA,IAAcV,MAAAA,GAAD,UAACA,EAAMK,YAAP,aAAC,EAAYC,KAAO,SAAW,SAEnDL,IA5BG,EA+BPF,EAAAA,OAAAA,OAAe,SAACC,EAAMC,GAAP,OACd,gBAAC,cAAD,KAAqBA,IAhCf,GAmCVU,WAAY,SAACC,GAAD,OACVA,EAAKC,MAAM,MAAMC,SAAQ,SAACF,EAAMG,GAAP,MAAa,CAACA,EAAI,GAAK,sBAAIC,IAAKD,IAAOH,QAEpE,OACE,gCACE,gBAAC,cAAD,MACGhB,MAAAA,GAAA,UAAAA,EAAaqB,cAAb,eAAqBC,SACpB,gBAAC,WAAD,KAAkBtB,MAAAA,OAAlB,EAAkBA,EAAaqB,SAEhCrB,MAAAA,OAAA,EAAAA,EAAauB,kBACZC,EAAAA,EAAAA,GACEC,KAAKC,MAAM1B,MAAAA,GAAX,UAAWA,EAAauB,sBAAxB,aAAW,EAA6BI,KACxC1B,O,4XCpDC2B,EAAWC,EAAAA,QAAAA,GAAAA,WAAH,qFAAGA,CAAH,kRAkBRC,EAAWD,EAAAA,QAAAA,GAAAA,WAAH,qFAAGA,CAAH,+RAkBRE,EAAYF,EAAAA,QAAAA,GAAAA,WAAH,sFAAGA,CAAH,kVAoBTG,EAAWH,EAAAA,QAAAA,EAAAA,WAAH,qFAAGA,CAAH,oVAwBRI,EAAcJ,EAAAA,QAAAA,WAAAA,WAAH,wFAAGA,CAAH,oNAgBXK,EAAYL,EAAAA,QAAAA,EAAAA,WAAH,sFAAGA,CAAH,sJAQTM,EAAgBN,EAAAA,QAAAA,GAAAA,WAAH,0FAAGA,CAAH,kCAIbO,EAAcP,EAAAA,QAAAA,GAAAA,WAAH,wFAAGA,CAAH,sFAMXQ,EAAWR,EAAAA,QAAAA,GAAAA,WAAH,qFAAGA,CAAH,mTAEDS,EAAAA,GAcPC,EAAcV,EAAAA,QAAAA,EAAAA,WAAH,wFAAGA,CAAH","sources":["webpack://commercial-ultramar/./src/components/richTextWithGreyCardRight/richTextWithGreyCardRight.js","webpack://commercial-ultramar/./src/components/richTextWithGreyCardRight/richTextWithGreyCardRightStyles.js"],"sourcesContent":["import React from 'react';\nimport { documentToReactComponents } from '@contentful/rich-text-react-renderer';\nimport { BLOCKS, INLINES } from '@contentful/rich-text-types';\nimport * as Styled from './richTextWithGreyCardRightStyles';\nimport isExternalUrl, { addTrailingSlash, isExternalUrlHref } from '../../utils';\n\nconst RichTextWithGreyCardRight = ({ sectionData }) => {\n const optionsMainStyle = {\n renderNode: {\n [BLOCKS.HEADING_2]: (node, children) => (\n {children}\n ),\n [BLOCKS.HEADING_3]: (node, children) => (\n {children}\n ),\n [BLOCKS.HEADING_4]: (node, children) => (\n {children}\n ),\n [BLOCKS.PARAGRAPH]: (node, children) => (\n {children}\n ),\n [BLOCKS.UL_LIST]: (node, children) => (\n {children}\n ),\n [BLOCKS.LIST_ITEM]: (node, children) => (\n {children}\n ),\n [INLINES.HYPERLINK]: (node, children) => (\n \n {children}\n \n ),\n [BLOCKS.QUOTE]: (node, children) => (\n {children}\n ),\n },\n renderText: (text) =>\n text.split('\\n').flatMap((text, i) => [i > 0 &&
, text]),\n };\n return (\n <>\n \n {sectionData?.header?.trim() && (\n {sectionData?.header}\n )}\n {sectionData?.contentDetails &&\n documentToReactComponents(\n JSON.parse(sectionData?.contentDetails?.raw),\n optionsMainStyle\n )}\n \n >\n );\n};\nexport default RichTextWithGreyCardRight;\n","import styled from 'styled-components';\nimport IconCheck from '../../images/icon-check.png';\n\nexport const HeaderH2 = styled.h2`\n text-align: center;\n position: relative;\n margin: 0 0 35px 0;\n font-family: 'MrAlex', sans-serif;\n font-size: 45px;\n line-height: 50px;\n color: #00539d;\n @media (max-width: 1399px) {\n font-size: 40px;\n line-height: 45px;\n margin-bottom: 30px;\n }\n @media (max-width: 767px) {\n font-size: 30px;\n line-height: 35px;\n }\n`;\nexport const HeaderH3 = styled.h3`\n text-align: center;\n position: relative;\n margin: 0 0 35px 0;\n font-family: 'HelveticaNeue-Light', sans-serif;\n font-size: 32px;\n line-height: 37px;\n color: #00a6e8;\n @media (max-width: 1399px) {\n font-size: 28px;\n line-height: 32px;\n margin-bottom: 30px;\n }\n @media (max-width: 767px) {\n font-size: 25px;\n line-height: 30px;\n }\n`;\nexport const HeadingH4 = styled.h4`\n padding: 0 0 15px 0;\n margin: 0 0 35px 0;\n font-family: 'HelveticaNeue-Light', sans-serif;\n font-size: 24px;\n line-height: 29px;\n color: rgba(0, 0, 0, 0.6);\n border-bottom: 1px solid rgba(0, 0, 0, 0.15);\n font-weight: normal;\n @media (max-width: 1399px) {\n font-size: 22px;\n line-height: 27px;\n margin-bottom: 30px;\n }\n @media (max-width: 767px) {\n font-size: 20px;\n line-height: 25px;\n }\n`;\n\nexport const ParaText = styled.p`\n font-family: 'HelveticaNeue-Light', arial, sans-serif;\n font-size: 20px;\n line-height: 32px;\n margin-bottom: 40px;\n @media (max-width: 1399px) {\n margin-bottom: 30px;\n }\n i {\n font-style: italic;\n margin-bottom: 0;\n font-size: 16px;\n line-height: 24px;\n @media (max-width: 1399px) {\n font-size: 15px;\n line-height: 22px;\n }\n @media (max-width: 767px) {\n font-size: 13px;\n line-height: 20px;\n }\n }\n`;\n\nexport const BlockQuotes = styled.blockquote`\n width: 100%;\n padding: 60px;\n text-align: center;\n background: radial-gradient(\n circle,\n rgba(0, 0, 0, 0) 0%,\n rgba(0, 0, 0, 0.1) 100%\n );\n border-radius: 20px;\n margin: 0 !important;\n @media (max-width: 991px) {\n width: 100%;\n padding: 30px;\n }\n`;\nexport const LinkStyle = styled.a`\n text-decoration: none;\n color: #00a6e8;\n transition: 0.25s ease-out;\n font-family: 'HelveticaNeue-Light', arial, sans-serif;\n font-size: 20px;\n line-height: 32px;\n`;\nexport const UnorderedList = styled.ul`\n margin: 0 0 30px 0;\n padding: 0;\n`;\nexport const OrderedList = styled.ol`\n margin: 0 0 30px 0;\n padding: 0;\n list-style-type: none;\n counter-reset: standard-counter;\n`;\nexport const ListItem = styled.li`\n padding: 0 0 15px 50px;\n background: url(${IconCheck}) no-repeat 0 1px;\n background-size: 30px auto;\n list-style: none;\n margin: 0;\n font-family: 'HelveticaNeue-Light', arial, sans-serif;\n font-size: 20px;\n line-height: 32px;\n @media (max-width: 767px) {\n padding-top: 1px;\n padding-left: 40px;\n background-position: 0 0;\n background-size: 25px auto;\n }\n`;\nexport const ButtonStyle = styled.a`\n display: inline-block;\n position: relative;\n top: 0;\n padding: 15px 35px;\n margin-right: 10px;\n margin-bottom: 40px;\n font-family: 'MrAlex', sans-serif;\n font-size: 24px;\n line-height: 28px;\n text-transform: uppercase;\n font-weight: bold;\n color: #00a6e8;\n border: 2px solid #00a6e8;\n box-shadow: 0 0 0 2px rgb(255 255 255 / 0%);\n border-radius: 100px;\n cursor: pointer;\n text-decoration: none;\n @media (max-width: 1399px) {\n font-size: 20px;\n line-height: 24px;\n margin-bottom: 30px;\n }\n @media (max-width: 1199px) {\n font-size: 25px;\n line-height: 25px;\n }\n\n @media (max-width: 767px) {\n font-size: 22px;\n line-height: 25px;\n }\n :hover {\n top: -5px;\n color: #f7991c;\n border-color: #f7991c;\n box-shadow: 0 5px 0 0 #f7991c;\n }\n`;\n"],"names":["sectionData","optionsMainStyle","renderNode","BLOCKS","node","children","INLINES","href","isExternalUrlHref","data","uri","addTrailingSlash","process","target","isExternalUrl","renderText","text","split","flatMap","i","key","header","trim","contentDetails","documentToReactComponents","JSON","parse","raw","HeaderH2","styled","HeaderH3","HeadingH4","ParaText","BlockQuotes","LinkStyle","UnorderedList","OrderedList","ListItem","IconCheck","ButtonStyle"],"sourceRoot":""}