= ({ props }) => {\n\tconst mobileCards = getCardsCarousel(props, true);\n\tconst { isLiverpool } = useIsLiverpool();\n\n\tconst carouselProps = {\n\t\theading: {\n\t\t\ttitle: {\n\t\t\t\tcontent: props?.title?.title ? props.title.title : '',\n\t\t\t},\n\t\t},\n\t\titems: mobileCards,\n\t\t...CAROUSEL_MOBILE_PROPS,\n\t};\n\n\tconst links = props?.items?.length ? props.items.map(item => ({ content: item.title, ...item.link })) : [];\n\n\treturn (\n\t\t\n\t\t\t{carouselProps && }\n\t\t\t{props?.otherCategories && !isLiverpool && {props.otherCategories}}\n\t\t\t{links && !isLiverpool && }\n\t\t
\n\t);\n};\n\nexport default CarouselCategoryMobile;\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\n\nimport CarouselCategoryDesktop from './views/desktop';\nimport CarouselCategoryMobile from './views/mobile';\n\nexport const CarouselCategory = generateViewsComponent(CarouselCategoryDesktop, CarouselCategoryMobile);\n\nexport * from './types';\nexport default CarouselCategory;\n","export const IMAGE_PROPS = {\n\twidth: 730,\n\theight: 397,\n\tsuboperation: null,\n};\n\nexport const IMAGE_PROPS_MOBILE = {\n\twidth: 393,\n\theight: 180,\n};\n","import { FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { css } from 'styled-components';\n\nimport type { CircuitsAdvantagesStyles } from '../types';\n\nconst veciCircuitsAdvantagesStyles: CircuitsAdvantagesStyles = {\n\tContainer: () => css`\n\t\tbackground-color: ${({ theme }) => theme.colors.green?.lightestL};\n\t`,\n\tStyledIcon: () => css`\n\t\t${FontMixin({ size: 'large' })};\n\t\tcolor: ${({ theme }) => theme.colors.primary.light};\n\t`,\n\tImageWrapperEffect: () => css`\n\t\t--first-color: transparent;\n\t\t--second-color: ${({ theme }) => theme.colors.green?.lightestL};\n\t\tbackground-image: linear-gradient(to left, var(--first-color), var(--second-color));\n\t`,\n};\n\nexport default veciCircuitsAdvantagesStyles;\n","import { createThemes } from '@babylon/ui-kit-styles/common/themes';\nimport { ThemeId } from '@babylon/ui-kit-styles/types/theme';\n\nimport veciCircuitsAdvantages from './styles/veci';\n\nconst circuitsAdvantagesThemes = createThemes({\n\t[ThemeId.veci]: veciCircuitsAdvantages,\n});\n\nexport default circuitsAdvantagesThemes;\n","import Icon from '@babylon/ui-kit-base/components/icons/icon';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport Title from '@babylon/ui-kit-base/components/text/title';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { Margin, Padding } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nimport circuitsAdvantagesThemes from './themes';\n\nexport const Container = styled.div`\n\t${FlexMixin({})};\n\tbackground-color: #e9f7ef;\n\tposition: relative;\n\t${circuitsAdvantagesThemes('Container')}\n`;\n\nexport const ContentWrapper = styled.div`\n\twidth: 100%;\n\t${Padding({ bottom: '44px', top: '38px' })};\n`;\n\nexport const Content = styled.div`\n\twidth: 63%;\n\t${FlexMixin({})};\n`;\n\nexport const BlockTitle = styled(Title)`\n\twidth: 63%;\n\t${Margin({ bottom: '16px' })};\n\ttext-align: initial;\n\th2 {\n\t\tpadding: 0 10px 0 0;\n\t\t${Padding({ left: '0', right: '10px' })};\n\t}\n`;\n\nexport const TitleList = styled.span`\n\t${FontMixin({ size: 'medium', weight: 'medium' })};\n\tline-height: 22px;\n\tcolor: ${({ theme }) => theme.colors.grays.darker};\n\t${Margin({ bottom: '12px' })};\n`;\n\nexport const List = styled.ul`\n\tlist-style: none;\n`;\n\nexport const Item = styled.li`\n\t${FlexMixin({ align: 'start' })};\n\t${Margin({ bottom: '8px' })};\n\tcolumn-gap: 8px;\n`;\n\nexport const StyledIcon = styled(Icon)`\n\t${FontMixin({ size: 'base' })};\n\tcolor: ${({ theme }) => theme.colors.status.success};\n\talign-self: baseline;\n\n\t${circuitsAdvantagesThemes('StyledIcon')}\n`;\n\nexport const StyledInnerMarkdownHTML = styled(InnerMarkdownHTML)`\n\t${FontMixin({ size: 'medium', height: 'base', weight: 'light' })};\n\tcolor: ${({ theme }) => theme.colors.grays.darker};\n`;\n\nexport const ImageWrapper = styled.div`\n\twidth: 37%;\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\tbottom: 0;\n\t${({ theme }) => theme.media.down('lg')} {\n\t\twidth: 0;\n\t}\n\n\timg {\n\t\tobject-fit: cover;\n\t\t${({ theme }) => theme.media.down('lg')} {\n\t\t\tdisplay: none;\n\t\t}\n\t}\n\n\t&::before {\n\t\tbackground-image: linear-gradient(to left, rgba(255, 0, 0, 0), rgba(233, 247, 239, 1));\n\t\tbottom: 0;\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\twidth: 120px;\n\t\t${circuitsAdvantagesThemes('ImageWrapperEffect')}\n\t}\n\n\tfigure {\n\t\theight: 100%;\n\n\t\timg {\n\t\t\theight: 100%;\n\t\t}\n\t}\n`;\n","import Image from '@babylon/ui-kit-base/components/multimedia/image';\nimport { Container } from '@babylon/ui-kit-styles/common/mixins/container.styled';\nimport type { FC } from 'react';\n\nimport { IMAGE_PROPS } from '../../constants/imageProps';\nimport type { CircuitsAdvantagesProps } from '../../types';\nimport * as S from './styled';\n\nconst CircuitsAdvantagesDesktop: FC = ({\n\tprops: { title = '', titleList = '', list, imageSrc },\n}) => (\n\t\n\t\t\n\t\t\t\n\t\t\t\t\n\t\t\t\t{titleList && {titleList}}\n\t\t\t\t\n\t\t\t\t\t{list?.length && (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{list.map(item => (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\n\t\t\t\t\t)}\n\t\t\t\t\n\t\t\t\n\t\t\n\n\t\t{imageSrc && (\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t)}\n\t\n);\n\nexport default CircuitsAdvantagesDesktop;\n","import Icon from '@babylon/ui-kit-base/components/icons/icon';\nimport Image from '@babylon/ui-kit-base/components/multimedia/image';\nimport InnerMarkdownHTML from '@babylon/ui-kit-base/components/text/inner-markdown-HTML';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { Margin, Padding } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nexport const ContainerMobile = styled.div`\n\t${FlexMixin({ direction: 'column' })};\n`;\n\nexport const StyledImage = styled(Image)`\n\tmin-height: 180px;\n`;\n\nexport const ContentWrapperMobile = styled.div`\n\t${Padding({ top: '12px', x: '16px', bottom: '28px' })};\n\tbackground-color: #e9f7ef;\n`;\n\nexport const TitleMobile = styled.h2`\n\tfont-family: ${({ theme }) => theme.font.family.secondary};\n\t${FontMixin({ size: 'larger', height: 'larger', weight: 'medium' })};\n\tcolor: ${({ theme }) => theme.colors.grays.darker};\n\t${Margin({ bottom: '12px' })};\n\ttext-align: center;\n`;\n\nexport const TitleListMobile = styled.p`\n\tfont-family: ${({ theme }) => theme.font.family.secondary};\n\t${FontMixin({ size: 'medium', height: 'base', weight: 'bold' })};\n\tcolor: ${({ theme }) => theme.colors.grays.darker};\n\t${Margin({ bottom: '8px' })};\n`;\n\nexport const ListMobile = styled.ul`\n\tlist-style: none;\n`;\n\nexport const ItemMobile = styled.li`\n\t${FlexMixin({ align: 'start' })};\n\t${Margin({ bottom: '8px' })};\n\tcolumn-gap: 8px;\n`;\n\nexport const StyledIcon = styled(Icon)`\n\t${FontMixin({ size: 'base' })};\n\tcolor: ${({ theme }) => theme.colors.status.success};\n\talign-self: baseline;\n`;\n\nexport const StyledInnerMarkdownHTML = styled(InnerMarkdownHTML)`\n\tfont-family: ${({ theme }) => theme.font.family.primary};\n\t${FontMixin({ size: 'medium', height: 'base', weight: 'light' })};\n\tcolor: ${({ theme }) => theme.colors.grays.darker};\n`;\n","import type { FC } from 'react';\n\nimport { IMAGE_PROPS_MOBILE } from '../../constants/imageProps';\nimport type { CircuitsAdvantagesProps } from '../../types';\nimport * as S from './styled';\n\nconst CircuitsAdvantagesMobile: FC = ({ props }) => (\n\t\n\t\t{props?.imageSrc && }\n\t\t\n\t\t\t{props?.title && {props.title}}\n\t\t\t{props?.titleList && {props.titleList}}\n\t\t\t{props?.list?.length && (\n\t\t\t\t\n\t\t\t\t\t{props.list.map(item => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t))}\n\t\t\t\t\n\t\t\t)}\n\t\t\n\t\n);\n\nexport default CircuitsAdvantagesMobile;\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\n\nimport CircuitsAdvantagesDesktop from './views/desktop';\nimport CircuitsAdvantagesMobile from './views/mobile';\n\nexport const CircuitsAdvantages = generateViewsComponent(CircuitsAdvantagesDesktop, CircuitsAdvantagesMobile);\n\nexport * from './types';\nexport default CircuitsAdvantages;\n","import { SectionMixin } from '@babylon/ui-kit-styles/common/mixins/section.styled';\nimport styled from 'styled-components';\n\nconst Section = /*#__PURE__*/ styled.section.withConfig({\n displayName: \"Section\"\n})([\n ``,\n ``\n], SectionMixin);\n\nexport { Section };\n","import { jsx } from 'react/jsx-runtime';\nimport { Section } from './styled.js';\n\nconst SectionDesktop = ({ className, children })=>/*#__PURE__*/ jsx(Section, {\n className: className,\n children: children\n });\n\nexport { SectionDesktop as default };\n","import { SectionMobileMixin } from '@babylon/ui-kit-styles/common/mixins/section.styled';\nimport styled from 'styled-components';\n\nconst SectionMobile = /*#__PURE__*/ styled.section.withConfig({\n displayName: \"SectionMobile\"\n})([\n ``,\n ``\n], SectionMobileMixin);\n\nexport { SectionMobile };\n","import { jsx } from 'react/jsx-runtime';\nimport { SectionMobile as SectionMobile$1 } from './styled.js';\n\nconst SectionMobile = ({ className, children })=>/*#__PURE__*/ jsx(SectionMobile$1, {\n className: className,\n children: children\n });\n\nexport { SectionMobile as default };\n","import { generateViewsComponent } from '@babylon/ui-kit-helpers/views';\nimport SectionDesktop from './views/desktop/index.js';\nimport SectionMobile from './views/mobile/index.js';\n\nconst Section = generateViewsComponent(SectionDesktop, SectionMobile);\n\nexport { Section as default };\n","import { ErrorBoundary } from '@babylon/ui-kit-helpers/error-boundary';\nimport type { FC, ReactElement } from 'react';\nimport { Children } from 'react';\n\nimport type { ComponentMap, ComponentPropMap, MainHomeOrderComponents } from '../types';\n\nexport const combineProps = (props: string[], componentPropMapping: ComponentPropMap) => {\n\tconst componentProps = props.map(propKey => componentPropMapping[propKey]);\n\tconst combinedComponentProps = Object.assign({}, ...componentProps);\n\n\treturn combinedComponentProps;\n};\n\n/*\n\tRender same as \"Context.order\" from Alexandria model, everything is based on the mappings,\n\tif a component/prop does not exist in the mapping, it will not be rendered.:\n\n\t1. filter out components that does not exist in componentMapping.\n\t2. map over components and render them.\n\t\t2.1. if component has props, combine them.\n\t\t2.2. if component has props but does not exist in componentPropMapping return null.\n\t3. if component has children, render them recursively and start from step 1.\n*/\nexport const renderComponentsWithHierarchyAndOrder = (\n\trenderComponents: MainHomeOrderComponents[],\n\tcomponentMapping: ComponentMap,\n\tcomponentPropMapping: ComponentPropMap\n): ReactElement => (\n\t<>\n\t\t{Children.toArray(\n\t\t\trenderComponents\n\t\t\t\t// filter out components that does not exist in componentMapping\n\t\t\t\t.filter(({ component }) => component in componentMapping)\n\t\t\t\t.map(({ component, props, children }) => {\n\t\t\t\t\tcomponentMapping[component].displayName = component;\n\t\t\t\t\tconst Component = ErrorBoundary(componentMapping[component]);\n\t\t\t\t\tconst componentProperties = combineProps(props ?? [], componentPropMapping);\n\n\t\t\t\t\t// component has props but does not exist in componentPropMapping (props with items and componentProps as {}).\n\t\t\t\t\tif (Object.keys(componentProperties).length === 0 && (props ?? []).length !== 0) return null;\n\n\t\t\t\t\treturn children ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{renderComponentsWithHierarchyAndOrder(children, componentMapping, componentPropMapping)}\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\t\n\t\t\t\t\t);\n\t\t\t\t})\n\t\t)}\n\t>\n);\n\n// TODO: change props: any type\nexport const renderComponentsWithOrder = (order: string[], props: any, componentMapping: { [x: string]: FC }) => {\n\t// filter out components that does not exist in component mapping\n\tconst componentsOrderOnlyInMapping = order.filter(component => component in componentMapping && props[component]);\n\n\treturn componentsOrderOnlyInMapping.map((component, index) => {\n\t\tcomponentMapping[component].displayName = component;\n\t\tconst Component = ErrorBoundary(componentMapping[component]);\n\t\tconst componentProps = props[component];\n\t\treturn ;\n\t});\n};\n\nexport const excludeComponentsByList = (inputList: string[], excludeList: string[]) =>\n\tinputList.filter(item => !excludeList.includes(item));\n","import { getResizeUrl, hasDomain } from '@babylon/ui-kit-base/components/multimedia/image/utils';\nimport contextBabylon from '@babylon/ui-kit-context';\nimport 'glightbox/dist/css/glightbox.min.css';\nimport { useRef, useContext, useEffect } from 'react';\n\nconst useLightbox = (items, imageConfig)=>{\n const lightbox = useRef(null);\n const context = useContext(contextBabylon);\n const mscdn = context.Cdn.startsWith('http') ? context.Cdn.substring(6) : context.Cdn;\n const images = items.map((item)=>{\n const href = imageConfig ? getResizeUrl(imageConfig, mscdn, item.src) : hasDomain(item.src, mscdn);\n return {\n href: imageConfig?.noResize ? item.src : href,\n type: 'image',\n alt: item.alt\n };\n });\n useEffect(()=>{\n if (!lightbox.current) {\n // @ts-ignore\n import('glightbox').then((module)=>{\n lightbox.current = module.default({\n openEffect: 'fade',\n closeEffect: 'fade',\n loop: true,\n elements: images\n });\n });\n }\n }, [\n images\n ]);\n const handleOpenGallery = (index)=>{\n // @ts-ignore\n lightbox.current.openAt(index);\n };\n return {\n handleOpenGallery\n };\n};\n\nexport { useLightbox as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../searcher/skeleton/views/mobile/index.js';\n\nconst SearcherMultipleSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n top: {\n maxItems: 4\n },\n variants: 5\n }\n },\n ...props\n });\n\nexport { SearcherMultipleSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherActivitiesSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherActivitiesSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherCarSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 5\n }\n },\n ...props\n });\n\nexport { SearcherCarSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeleton from '../../../../../../others/searcher/skeleton/index.js';\n\nconst SearcherCruSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeleton, {\n config: {\n mobile: {\n variants: 6\n }\n },\n ...props\n });\n\nexport { SearcherCruSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherDestinationSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 2\n }\n },\n ...props\n });\n\nexport { SearcherDestinationSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherFerryHotelSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 6\n }\n },\n ...props\n });\n\nexport { SearcherFerryHotelSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeleton from '../../../../../../others/searcher/skeleton/index.js';\n\nconst SearcherFliSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeleton, {\n config: {\n mobile: {\n top: {\n maxItems: 3\n },\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherFliSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherFlightHotelSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherFlightHotelSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherHotSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherHotSkeletonMobile as default };\n","import SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\nimport styled from 'styled-components';\nimport { searcherSkeletonBase } from '../../styled.js';\n\nconst SearcherSkeleton = /*#__PURE__*/ styled(SearcherSkeletonMobile).withConfig({\n displayName: \"SearcherSkeleton\"\n})([\n ``,\n ``\n], searcherSkeletonBase);\n\nexport { SearcherSkeleton };\n","import { jsx } from 'react/jsx-runtime';\nimport { SearcherSkeleton } from './styled.js';\n\nconst SearcherInsuranceSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeleton, {\n config: {\n mobile: {\n variants: 6\n }\n },\n ...props\n });\n\nexport { SearcherInsuranceSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherLeiSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 3\n }\n },\n ...props\n });\n\nexport { SearcherLeiSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherLeisureMultiSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n top: {\n maxItems: 3\n },\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherLeisureMultiSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherMultipleSkeletonMobile from '../../../../../../others/searcher-multiple/components/skeleton/views/mobile/index.js';\n\nconst SearcherMultiPakSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherMultipleSkeletonMobile, {\n variant: \"radio-buttons\",\n ...props\n });\n\nexport { SearcherMultiPakSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherProSkeletonMobile = ({ numberOfInputs = 6, hasResident = true, ...props })=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: numberOfInputs + (hasResident ? 2 : 1)\n }\n },\n ...props\n });\n\nexport { SearcherProSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherTouSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 5\n }\n },\n ...props\n });\n\nexport { SearcherTouSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherTraSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherTraSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherTrainHotelSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 4\n }\n },\n ...props\n });\n\nexport { SearcherTrainHotelSkeletonMobile as default };\n","import { jsx } from 'react/jsx-runtime';\nimport SearcherSkeletonMobile from '../../../../../../others/searcher/skeleton/views/mobile/index.js';\n\nconst SearcherTransfersSkeletonMobile = (props)=>/*#__PURE__*/ jsx(SearcherSkeletonMobile, {\n config: {\n mobile: {\n variants: 6\n }\n },\n ...props\n });\n\nexport { SearcherTransfersSkeletonMobile as default };\n"],"file":"cdn-placeholder/babylon/packages/circuits/client/chunks/index.gmmj_TMv.js"}