{"version":3,"names":["classesToSelector","classes","trim","replace","Pagination","_ref","swiper","extendParams","on","emit","pfx","pagination","el","bulletElement","clickable","hideOnClick","renderBullet","renderProgressbar","renderFraction","renderCustom","progressbarOpposite","type","dynamicBullets","dynamicMainBullets","formatFractionCurrent","number","formatFractionTotal","bulletClass","bulletActiveClass","modifierClass","currentClass","totalClass","hiddenClass","progressbarFillClass","progressbarOppositeClass","clickableClass","lockClass","horizontalClass","verticalClass","paginationDisabledClass","bullets","bulletSize","dynamicBulletIndex","makeElementsArray","Array","isArray","filter","e","isPaginationDisabled","params","length","setSideBullets","bulletEl","position","classList","add","onBulletClick","target","closest","preventDefault","index","elementIndex","slidesPerGroup","loop","realIndex","slideToLoop","slideTo","update","rtl","current","previousIndex","slidesLength","virtual","enabled","slides","total","Math","ceil","snapGrid","previousRealIndex","floor","snapIndex","previousSnapIndex","activeIndex","firstIndex","lastIndex","midIndex","elementOuterSize","isHorizontal","forEach","subEl","style","undefined","max","min","classesToRemove","map","suffix","s","includes","split","flat","remove","bullet","bulletIndex","isElement","setAttribute","firstDisplayedBullet","lastDisplayedBullet","i","dynamicBulletsLength","bulletsOffset","offsetProp","subElIndex","querySelectorAll","fractionEl","textContent","totalEl","progressbarDirection","scale","scaleX","scaleY","progressEl","transform","transitionDuration","speed","innerHTML","watchOverflow","isLocked","render","grid","rows","paginationHTML","numberOfBullets","freeMode","call","push","init","createElementIfNotDefined","originalParams","querySelector","document","uniqueNavElements","elementParents","Object","assign","addEventListener","destroy","removeEventListener","disable","_s","targetEl","contains","navigation","nextEl","prevEl","isHidden","toggle","enable","Autoplay","autoplay","running","paused","timeLeft","delay","waitForTransition","disableOnInteraction","stopOnLastSlide","reverseDirection","pauseOnMouseEnter","timeout","raf","autoplayDelayTotal","autoplayDelayCurrent","autoplayTimeLeft","autoplayStartTime","Date","getTime","wasPaused","isTouched","pausedByTouch","touchStartTimeout","slideChanged","pausedByInteraction","pausedByPointerEnter","onTransitionEnd","destroyed","wrapperEl","resume","calcTimeLeft","requestAnimationFrame","getSlideDelay","activeSlideEl","slideEl","currentSlideDelay","parseInt","getAttribute","run","delayForce","cancelAnimationFrame","Number","isNaN","proceed","isBeginning","rewind","slidePrev","isEnd","slideNext","cssMode","clearTimeout","setTimeout","start","stop","pause","internal","reset","onVisibilityChange","getDocument","visibilityState","onPointerEnter","pointerType","animating","onPointerLeave","attachMouseEvents","detachMouseEvents","attachDocumentEvents","detachDocumentEvents","sliderCss","LgrSliderStyle0","Slider","componentDidLoad","this","Swiper","modules","Navigation","slidesPerView","spaceBetween","h","Host","key","class"],"sources":["node_modules/swiper/shared/classes-to-selector.mjs","node_modules/swiper/modules/pagination.mjs","node_modules/swiper/modules/autoplay.mjs","src/components/slider/slider.scss?tag=lgr-slider","src/components/slider/slider.tsx"],"sourcesContent":["function classesToSelector(classes) {\n if (classes === void 0) {\n classes = '';\n }\n return `.${classes.trim().replace(/([\\.:!+\\/])/g, '\\\\$1') // eslint-disable-line\n .replace(/ /g, '.')}`;\n}\n\nexport { classesToSelector as c };\n","import { c as classesToSelector } from '../shared/classes-to-selector.mjs';\nimport { c as createElementIfNotDefined } from '../shared/create-element-if-not-defined.mjs';\nimport { f as elementOuterSize, g as elementIndex, a as elementParents } from '../shared/utils.mjs';\n\nfunction Pagination(_ref) {\n let {\n swiper,\n extendParams,\n on,\n emit\n } = _ref;\n const pfx = 'swiper-pagination';\n extendParams({\n pagination: {\n el: null,\n bulletElement: 'span',\n clickable: false,\n hideOnClick: false,\n renderBullet: null,\n renderProgressbar: null,\n renderFraction: null,\n renderCustom: null,\n progressbarOpposite: false,\n type: 'bullets',\n // 'bullets' or 'progressbar' or 'fraction' or 'custom'\n dynamicBullets: false,\n dynamicMainBullets: 1,\n formatFractionCurrent: number => number,\n formatFractionTotal: number => number,\n bulletClass: `${pfx}-bullet`,\n bulletActiveClass: `${pfx}-bullet-active`,\n modifierClass: `${pfx}-`,\n currentClass: `${pfx}-current`,\n totalClass: `${pfx}-total`,\n hiddenClass: `${pfx}-hidden`,\n progressbarFillClass: `${pfx}-progressbar-fill`,\n progressbarOppositeClass: `${pfx}-progressbar-opposite`,\n clickableClass: `${pfx}-clickable`,\n lockClass: `${pfx}-lock`,\n horizontalClass: `${pfx}-horizontal`,\n verticalClass: `${pfx}-vertical`,\n paginationDisabledClass: `${pfx}-disabled`\n }\n });\n swiper.pagination = {\n el: null,\n bullets: []\n };\n let bulletSize;\n let dynamicBulletIndex = 0;\n const makeElementsArray = el => (Array.isArray(el) ? el : [el]).filter(e => !!e);\n function isPaginationDisabled() {\n return !swiper.params.pagination.el || !swiper.pagination.el || Array.isArray(swiper.pagination.el) && swiper.pagination.el.length === 0;\n }\n function setSideBullets(bulletEl, position) {\n const {\n bulletActiveClass\n } = swiper.params.pagination;\n if (!bulletEl) return;\n bulletEl = bulletEl[`${position === 'prev' ? 'previous' : 'next'}ElementSibling`];\n if (bulletEl) {\n bulletEl.classList.add(`${bulletActiveClass}-${position}`);\n bulletEl = bulletEl[`${position === 'prev' ? 'previous' : 'next'}ElementSibling`];\n if (bulletEl) {\n bulletEl.classList.add(`${bulletActiveClass}-${position}-${position}`);\n }\n }\n }\n function onBulletClick(e) {\n const bulletEl = e.target.closest(classesToSelector(swiper.params.pagination.bulletClass));\n if (!bulletEl) {\n return;\n }\n e.preventDefault();\n const index = elementIndex(bulletEl) * swiper.params.slidesPerGroup;\n if (swiper.params.loop) {\n if (swiper.realIndex === index) return;\n swiper.slideToLoop(index);\n } else {\n swiper.slideTo(index);\n }\n }\n function update() {\n // Render || Update Pagination bullets/items\n const rtl = swiper.rtl;\n const params = swiper.params.pagination;\n if (isPaginationDisabled()) return;\n let el = swiper.pagination.el;\n el = makeElementsArray(el);\n // Current/Total\n let current;\n let previousIndex;\n const slidesLength = swiper.virtual && swiper.params.virtual.enabled ? swiper.virtual.slides.length : swiper.slides.length;\n const total = swiper.params.loop ? Math.ceil(slidesLength / swiper.params.slidesPerGroup) : swiper.snapGrid.length;\n if (swiper.params.loop) {\n previousIndex = swiper.previousRealIndex || 0;\n current = swiper.params.slidesPerGroup > 1 ? Math.floor(swiper.realIndex / swiper.params.slidesPerGroup) : swiper.realIndex;\n } else if (typeof swiper.snapIndex !== 'undefined') {\n current = swiper.snapIndex;\n previousIndex = swiper.previousSnapIndex;\n } else {\n previousIndex = swiper.previousIndex || 0;\n current = swiper.activeIndex || 0;\n }\n // Types\n if (params.type === 'bullets' && swiper.pagination.bullets && swiper.pagination.bullets.length > 0) {\n const bullets = swiper.pagination.bullets;\n let firstIndex;\n let lastIndex;\n let midIndex;\n if (params.dynamicBullets) {\n bulletSize = elementOuterSize(bullets[0], swiper.isHorizontal() ? 'width' : 'height', true);\n el.forEach(subEl => {\n subEl.style[swiper.isHorizontal() ? 'width' : 'height'] = `${bulletSize * (params.dynamicMainBullets + 4)}px`;\n });\n if (params.dynamicMainBullets > 1 && previousIndex !== undefined) {\n dynamicBulletIndex += current - (previousIndex || 0);\n if (dynamicBulletIndex > params.dynamicMainBullets - 1) {\n dynamicBulletIndex = params.dynamicMainBullets - 1;\n } else if (dynamicBulletIndex < 0) {\n dynamicBulletIndex = 0;\n }\n }\n firstIndex = Math.max(current - dynamicBulletIndex, 0);\n lastIndex = firstIndex + (Math.min(bullets.length, params.dynamicMainBullets) - 1);\n midIndex = (lastIndex + firstIndex) / 2;\n }\n bullets.forEach(bulletEl => {\n const classesToRemove = [...['', '-next', '-next-next', '-prev', '-prev-prev', '-main'].map(suffix => `${params.bulletActiveClass}${suffix}`)].map(s => typeof s === 'string' && s.includes(' ') ? s.split(' ') : s).flat();\n bulletEl.classList.remove(...classesToRemove);\n });\n if (el.length > 1) {\n bullets.forEach(bullet => {\n const bulletIndex = elementIndex(bullet);\n if (bulletIndex === current) {\n bullet.classList.add(...params.bulletActiveClass.split(' '));\n } else if (swiper.isElement) {\n bullet.setAttribute('part', 'bullet');\n }\n if (params.dynamicBullets) {\n if (bulletIndex >= firstIndex && bulletIndex <= lastIndex) {\n bullet.classList.add(...`${params.bulletActiveClass}-main`.split(' '));\n }\n if (bulletIndex === firstIndex) {\n setSideBullets(bullet, 'prev');\n }\n if (bulletIndex === lastIndex) {\n setSideBullets(bullet, 'next');\n }\n }\n });\n } else {\n const bullet = bullets[current];\n if (bullet) {\n bullet.classList.add(...params.bulletActiveClass.split(' '));\n }\n if (swiper.isElement) {\n bullets.forEach((bulletEl, bulletIndex) => {\n bulletEl.setAttribute('part', bulletIndex === current ? 'bullet-active' : 'bullet');\n });\n }\n if (params.dynamicBullets) {\n const firstDisplayedBullet = bullets[firstIndex];\n const lastDisplayedBullet = bullets[lastIndex];\n for (let i = firstIndex; i <= lastIndex; i += 1) {\n if (bullets[i]) {\n bullets[i].classList.add(...`${params.bulletActiveClass}-main`.split(' '));\n }\n }\n setSideBullets(firstDisplayedBullet, 'prev');\n setSideBullets(lastDisplayedBullet, 'next');\n }\n }\n if (params.dynamicBullets) {\n const dynamicBulletsLength = Math.min(bullets.length, params.dynamicMainBullets + 4);\n const bulletsOffset = (bulletSize * dynamicBulletsLength - bulletSize) / 2 - midIndex * bulletSize;\n const offsetProp = rtl ? 'right' : 'left';\n bullets.forEach(bullet => {\n bullet.style[swiper.isHorizontal() ? offsetProp : 'top'] = `${bulletsOffset}px`;\n });\n }\n }\n el.forEach((subEl, subElIndex) => {\n if (params.type === 'fraction') {\n subEl.querySelectorAll(classesToSelector(params.currentClass)).forEach(fractionEl => {\n fractionEl.textContent = params.formatFractionCurrent(current + 1);\n });\n subEl.querySelectorAll(classesToSelector(params.totalClass)).forEach(totalEl => {\n totalEl.textContent = params.formatFractionTotal(total);\n });\n }\n if (params.type === 'progressbar') {\n let progressbarDirection;\n if (params.progressbarOpposite) {\n progressbarDirection = swiper.isHorizontal() ? 'vertical' : 'horizontal';\n } else {\n progressbarDirection = swiper.isHorizontal() ? 'horizontal' : 'vertical';\n }\n const scale = (current + 1) / total;\n let scaleX = 1;\n let scaleY = 1;\n if (progressbarDirection === 'horizontal') {\n scaleX = scale;\n } else {\n scaleY = scale;\n }\n subEl.querySelectorAll(classesToSelector(params.progressbarFillClass)).forEach(progressEl => {\n progressEl.style.transform = `translate3d(0,0,0) scaleX(${scaleX}) scaleY(${scaleY})`;\n progressEl.style.transitionDuration = `${swiper.params.speed}ms`;\n });\n }\n if (params.type === 'custom' && params.renderCustom) {\n subEl.innerHTML = params.renderCustom(swiper, current + 1, total);\n if (subElIndex === 0) emit('paginationRender', subEl);\n } else {\n if (subElIndex === 0) emit('paginationRender', subEl);\n emit('paginationUpdate', subEl);\n }\n if (swiper.params.watchOverflow && swiper.enabled) {\n subEl.classList[swiper.isLocked ? 'add' : 'remove'](params.lockClass);\n }\n });\n }\n function render() {\n // Render Container\n const params = swiper.params.pagination;\n if (isPaginationDisabled()) return;\n const slidesLength = swiper.virtual && swiper.params.virtual.enabled ? swiper.virtual.slides.length : swiper.grid && swiper.params.grid.rows > 1 ? swiper.slides.length / Math.ceil(swiper.params.grid.rows) : swiper.slides.length;\n let el = swiper.pagination.el;\n el = makeElementsArray(el);\n let paginationHTML = '';\n if (params.type === 'bullets') {\n let numberOfBullets = swiper.params.loop ? Math.ceil(slidesLength / swiper.params.slidesPerGroup) : swiper.snapGrid.length;\n if (swiper.params.freeMode && swiper.params.freeMode.enabled && numberOfBullets > slidesLength) {\n numberOfBullets = slidesLength;\n }\n for (let i = 0; i < numberOfBullets; i += 1) {\n if (params.renderBullet) {\n paginationHTML += params.renderBullet.call(swiper, i, params.bulletClass);\n } else {\n // prettier-ignore\n paginationHTML += `<${params.bulletElement} ${swiper.isElement ? 'part=\"bullet\"' : ''} class=\"${params.bulletClass}\">`;\n }\n }\n }\n if (params.type === 'fraction') {\n if (params.renderFraction) {\n paginationHTML = params.renderFraction.call(swiper, params.currentClass, params.totalClass);\n } else {\n paginationHTML = `` + ' / ' + ``;\n }\n }\n if (params.type === 'progressbar') {\n if (params.renderProgressbar) {\n paginationHTML = params.renderProgressbar.call(swiper, params.progressbarFillClass);\n } else {\n paginationHTML = ``;\n }\n }\n swiper.pagination.bullets = [];\n el.forEach(subEl => {\n if (params.type !== 'custom') {\n subEl.innerHTML = paginationHTML || '';\n }\n if (params.type === 'bullets') {\n swiper.pagination.bullets.push(...subEl.querySelectorAll(classesToSelector(params.bulletClass)));\n }\n });\n if (params.type !== 'custom') {\n emit('paginationRender', el[0]);\n }\n }\n function init() {\n swiper.params.pagination = createElementIfNotDefined(swiper, swiper.originalParams.pagination, swiper.params.pagination, {\n el: 'swiper-pagination'\n });\n const params = swiper.params.pagination;\n if (!params.el) return;\n let el;\n if (typeof params.el === 'string' && swiper.isElement) {\n el = swiper.el.querySelector(params.el);\n }\n if (!el && typeof params.el === 'string') {\n el = [...document.querySelectorAll(params.el)];\n }\n if (!el) {\n el = params.el;\n }\n if (!el || el.length === 0) return;\n if (swiper.params.uniqueNavElements && typeof params.el === 'string' && Array.isArray(el) && el.length > 1) {\n el = [...swiper.el.querySelectorAll(params.el)];\n // check if it belongs to another nested Swiper\n if (el.length > 1) {\n el = el.filter(subEl => {\n if (elementParents(subEl, '.swiper')[0] !== swiper.el) return false;\n return true;\n })[0];\n }\n }\n if (Array.isArray(el) && el.length === 1) el = el[0];\n Object.assign(swiper.pagination, {\n el\n });\n el = makeElementsArray(el);\n el.forEach(subEl => {\n if (params.type === 'bullets' && params.clickable) {\n subEl.classList.add(...(params.clickableClass || '').split(' '));\n }\n subEl.classList.add(params.modifierClass + params.type);\n subEl.classList.add(swiper.isHorizontal() ? params.horizontalClass : params.verticalClass);\n if (params.type === 'bullets' && params.dynamicBullets) {\n subEl.classList.add(`${params.modifierClass}${params.type}-dynamic`);\n dynamicBulletIndex = 0;\n if (params.dynamicMainBullets < 1) {\n params.dynamicMainBullets = 1;\n }\n }\n if (params.type === 'progressbar' && params.progressbarOpposite) {\n subEl.classList.add(params.progressbarOppositeClass);\n }\n if (params.clickable) {\n subEl.addEventListener('click', onBulletClick);\n }\n if (!swiper.enabled) {\n subEl.classList.add(params.lockClass);\n }\n });\n }\n function destroy() {\n const params = swiper.params.pagination;\n if (isPaginationDisabled()) return;\n let el = swiper.pagination.el;\n if (el) {\n el = makeElementsArray(el);\n el.forEach(subEl => {\n subEl.classList.remove(params.hiddenClass);\n subEl.classList.remove(params.modifierClass + params.type);\n subEl.classList.remove(swiper.isHorizontal() ? params.horizontalClass : params.verticalClass);\n if (params.clickable) {\n subEl.classList.remove(...(params.clickableClass || '').split(' '));\n subEl.removeEventListener('click', onBulletClick);\n }\n });\n }\n if (swiper.pagination.bullets) swiper.pagination.bullets.forEach(subEl => subEl.classList.remove(...params.bulletActiveClass.split(' ')));\n }\n on('changeDirection', () => {\n if (!swiper.pagination || !swiper.pagination.el) return;\n const params = swiper.params.pagination;\n let {\n el\n } = swiper.pagination;\n el = makeElementsArray(el);\n el.forEach(subEl => {\n subEl.classList.remove(params.horizontalClass, params.verticalClass);\n subEl.classList.add(swiper.isHorizontal() ? params.horizontalClass : params.verticalClass);\n });\n });\n on('init', () => {\n if (swiper.params.pagination.enabled === false) {\n // eslint-disable-next-line\n disable();\n } else {\n init();\n render();\n update();\n }\n });\n on('activeIndexChange', () => {\n if (typeof swiper.snapIndex === 'undefined') {\n update();\n }\n });\n on('snapIndexChange', () => {\n update();\n });\n on('snapGridLengthChange', () => {\n render();\n update();\n });\n on('destroy', () => {\n destroy();\n });\n on('enable disable', () => {\n let {\n el\n } = swiper.pagination;\n if (el) {\n el = makeElementsArray(el);\n el.forEach(subEl => subEl.classList[swiper.enabled ? 'remove' : 'add'](swiper.params.pagination.lockClass));\n }\n });\n on('lock unlock', () => {\n update();\n });\n on('click', (_s, e) => {\n const targetEl = e.target;\n const el = makeElementsArray(swiper.pagination.el);\n if (swiper.params.pagination.el && swiper.params.pagination.hideOnClick && el && el.length > 0 && !targetEl.classList.contains(swiper.params.pagination.bulletClass)) {\n if (swiper.navigation && (swiper.navigation.nextEl && targetEl === swiper.navigation.nextEl || swiper.navigation.prevEl && targetEl === swiper.navigation.prevEl)) return;\n const isHidden = el[0].classList.contains(swiper.params.pagination.hiddenClass);\n if (isHidden === true) {\n emit('paginationShow');\n } else {\n emit('paginationHide');\n }\n el.forEach(subEl => subEl.classList.toggle(swiper.params.pagination.hiddenClass));\n }\n });\n const enable = () => {\n swiper.el.classList.remove(swiper.params.pagination.paginationDisabledClass);\n let {\n el\n } = swiper.pagination;\n if (el) {\n el = makeElementsArray(el);\n el.forEach(subEl => subEl.classList.remove(swiper.params.pagination.paginationDisabledClass));\n }\n init();\n render();\n update();\n };\n const disable = () => {\n swiper.el.classList.add(swiper.params.pagination.paginationDisabledClass);\n let {\n el\n } = swiper.pagination;\n if (el) {\n el = makeElementsArray(el);\n el.forEach(subEl => subEl.classList.add(swiper.params.pagination.paginationDisabledClass));\n }\n destroy();\n };\n Object.assign(swiper.pagination, {\n enable,\n disable,\n render,\n update,\n init,\n destroy\n });\n}\n\nexport { Pagination as default };\n","import { g as getDocument } from '../shared/ssr-window.esm.mjs';\n\n/* eslint no-underscore-dangle: \"off\" */\n/* eslint no-use-before-define: \"off\" */\nfunction Autoplay(_ref) {\n let {\n swiper,\n extendParams,\n on,\n emit,\n params\n } = _ref;\n swiper.autoplay = {\n running: false,\n paused: false,\n timeLeft: 0\n };\n extendParams({\n autoplay: {\n enabled: false,\n delay: 3000,\n waitForTransition: true,\n disableOnInteraction: false,\n stopOnLastSlide: false,\n reverseDirection: false,\n pauseOnMouseEnter: false\n }\n });\n let timeout;\n let raf;\n let autoplayDelayTotal = params && params.autoplay ? params.autoplay.delay : 3000;\n let autoplayDelayCurrent = params && params.autoplay ? params.autoplay.delay : 3000;\n let autoplayTimeLeft;\n let autoplayStartTime = new Date().getTime();\n let wasPaused;\n let isTouched;\n let pausedByTouch;\n let touchStartTimeout;\n let slideChanged;\n let pausedByInteraction;\n let pausedByPointerEnter;\n function onTransitionEnd(e) {\n if (!swiper || swiper.destroyed || !swiper.wrapperEl) return;\n if (e.target !== swiper.wrapperEl) return;\n swiper.wrapperEl.removeEventListener('transitionend', onTransitionEnd);\n if (pausedByPointerEnter) {\n return;\n }\n resume();\n }\n const calcTimeLeft = () => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n if (swiper.autoplay.paused) {\n wasPaused = true;\n } else if (wasPaused) {\n autoplayDelayCurrent = autoplayTimeLeft;\n wasPaused = false;\n }\n const timeLeft = swiper.autoplay.paused ? autoplayTimeLeft : autoplayStartTime + autoplayDelayCurrent - new Date().getTime();\n swiper.autoplay.timeLeft = timeLeft;\n emit('autoplayTimeLeft', timeLeft, timeLeft / autoplayDelayTotal);\n raf = requestAnimationFrame(() => {\n calcTimeLeft();\n });\n };\n const getSlideDelay = () => {\n let activeSlideEl;\n if (swiper.virtual && swiper.params.virtual.enabled) {\n activeSlideEl = swiper.slides.filter(slideEl => slideEl.classList.contains('swiper-slide-active'))[0];\n } else {\n activeSlideEl = swiper.slides[swiper.activeIndex];\n }\n if (!activeSlideEl) return undefined;\n const currentSlideDelay = parseInt(activeSlideEl.getAttribute('data-swiper-autoplay'), 10);\n return currentSlideDelay;\n };\n const run = delayForce => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n cancelAnimationFrame(raf);\n calcTimeLeft();\n let delay = typeof delayForce === 'undefined' ? swiper.params.autoplay.delay : delayForce;\n autoplayDelayTotal = swiper.params.autoplay.delay;\n autoplayDelayCurrent = swiper.params.autoplay.delay;\n const currentSlideDelay = getSlideDelay();\n if (!Number.isNaN(currentSlideDelay) && currentSlideDelay > 0 && typeof delayForce === 'undefined') {\n delay = currentSlideDelay;\n autoplayDelayTotal = currentSlideDelay;\n autoplayDelayCurrent = currentSlideDelay;\n }\n autoplayTimeLeft = delay;\n const speed = swiper.params.speed;\n const proceed = () => {\n if (!swiper || swiper.destroyed) return;\n if (swiper.params.autoplay.reverseDirection) {\n if (!swiper.isBeginning || swiper.params.loop || swiper.params.rewind) {\n swiper.slidePrev(speed, true, true);\n emit('autoplay');\n } else if (!swiper.params.autoplay.stopOnLastSlide) {\n swiper.slideTo(swiper.slides.length - 1, speed, true, true);\n emit('autoplay');\n }\n } else {\n if (!swiper.isEnd || swiper.params.loop || swiper.params.rewind) {\n swiper.slideNext(speed, true, true);\n emit('autoplay');\n } else if (!swiper.params.autoplay.stopOnLastSlide) {\n swiper.slideTo(0, speed, true, true);\n emit('autoplay');\n }\n }\n if (swiper.params.cssMode) {\n autoplayStartTime = new Date().getTime();\n requestAnimationFrame(() => {\n run();\n });\n }\n };\n if (delay > 0) {\n clearTimeout(timeout);\n timeout = setTimeout(() => {\n proceed();\n }, delay);\n } else {\n requestAnimationFrame(() => {\n proceed();\n });\n }\n\n // eslint-disable-next-line\n return delay;\n };\n const start = () => {\n autoplayStartTime = new Date().getTime();\n swiper.autoplay.running = true;\n run();\n emit('autoplayStart');\n };\n const stop = () => {\n swiper.autoplay.running = false;\n clearTimeout(timeout);\n cancelAnimationFrame(raf);\n emit('autoplayStop');\n };\n const pause = (internal, reset) => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n clearTimeout(timeout);\n if (!internal) {\n pausedByInteraction = true;\n }\n const proceed = () => {\n emit('autoplayPause');\n if (swiper.params.autoplay.waitForTransition) {\n swiper.wrapperEl.addEventListener('transitionend', onTransitionEnd);\n } else {\n resume();\n }\n };\n swiper.autoplay.paused = true;\n if (reset) {\n if (slideChanged) {\n autoplayTimeLeft = swiper.params.autoplay.delay;\n }\n slideChanged = false;\n proceed();\n return;\n }\n const delay = autoplayTimeLeft || swiper.params.autoplay.delay;\n autoplayTimeLeft = delay - (new Date().getTime() - autoplayStartTime);\n if (swiper.isEnd && autoplayTimeLeft < 0 && !swiper.params.loop) return;\n if (autoplayTimeLeft < 0) autoplayTimeLeft = 0;\n proceed();\n };\n const resume = () => {\n if (swiper.isEnd && autoplayTimeLeft < 0 && !swiper.params.loop || swiper.destroyed || !swiper.autoplay.running) return;\n autoplayStartTime = new Date().getTime();\n if (pausedByInteraction) {\n pausedByInteraction = false;\n run(autoplayTimeLeft);\n } else {\n run();\n }\n swiper.autoplay.paused = false;\n emit('autoplayResume');\n };\n const onVisibilityChange = () => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n const document = getDocument();\n if (document.visibilityState === 'hidden') {\n pausedByInteraction = true;\n pause(true);\n }\n if (document.visibilityState === 'visible') {\n resume();\n }\n };\n const onPointerEnter = e => {\n if (e.pointerType !== 'mouse') return;\n pausedByInteraction = true;\n pausedByPointerEnter = true;\n if (swiper.animating || swiper.autoplay.paused) return;\n pause(true);\n };\n const onPointerLeave = e => {\n if (e.pointerType !== 'mouse') return;\n pausedByPointerEnter = false;\n if (swiper.autoplay.paused) {\n resume();\n }\n };\n const attachMouseEvents = () => {\n if (swiper.params.autoplay.pauseOnMouseEnter) {\n swiper.el.addEventListener('pointerenter', onPointerEnter);\n swiper.el.addEventListener('pointerleave', onPointerLeave);\n }\n };\n const detachMouseEvents = () => {\n swiper.el.removeEventListener('pointerenter', onPointerEnter);\n swiper.el.removeEventListener('pointerleave', onPointerLeave);\n };\n const attachDocumentEvents = () => {\n const document = getDocument();\n document.addEventListener('visibilitychange', onVisibilityChange);\n };\n const detachDocumentEvents = () => {\n const document = getDocument();\n document.removeEventListener('visibilitychange', onVisibilityChange);\n };\n on('init', () => {\n if (swiper.params.autoplay.enabled) {\n attachMouseEvents();\n attachDocumentEvents();\n start();\n }\n });\n on('destroy', () => {\n detachMouseEvents();\n detachDocumentEvents();\n if (swiper.autoplay.running) {\n stop();\n }\n });\n on('_freeModeStaticRelease', () => {\n if (pausedByTouch || pausedByInteraction) {\n resume();\n }\n });\n on('_freeModeNoMomentumRelease', () => {\n if (!swiper.params.autoplay.disableOnInteraction) {\n pause(true, true);\n } else {\n stop();\n }\n });\n on('beforeTransitionStart', (_s, speed, internal) => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n if (internal || !swiper.params.autoplay.disableOnInteraction) {\n pause(true, true);\n } else {\n stop();\n }\n });\n on('sliderFirstMove', () => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n if (swiper.params.autoplay.disableOnInteraction) {\n stop();\n return;\n }\n isTouched = true;\n pausedByTouch = false;\n pausedByInteraction = false;\n touchStartTimeout = setTimeout(() => {\n pausedByInteraction = true;\n pausedByTouch = true;\n pause(true);\n }, 200);\n });\n on('touchEnd', () => {\n if (swiper.destroyed || !swiper.autoplay.running || !isTouched) return;\n clearTimeout(touchStartTimeout);\n clearTimeout(timeout);\n if (swiper.params.autoplay.disableOnInteraction) {\n pausedByTouch = false;\n isTouched = false;\n return;\n }\n if (pausedByTouch && swiper.params.cssMode) resume();\n pausedByTouch = false;\n isTouched = false;\n });\n on('slideChange', () => {\n if (swiper.destroyed || !swiper.autoplay.running) return;\n slideChanged = true;\n });\n Object.assign(swiper.autoplay, {\n start,\n stop,\n pause,\n resume\n });\n}\n\nexport { Autoplay as default };\n","/**\n * Swiper 11.0.5\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * https://swiperjs.com\n *\n * Copyright 2014-2023 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: November 22, 2023\n */\n@import '../../global/variables/grid';\n\n/* FONT_START */\n@font-face {\n font-family: 'swiper-icons';\n src: url('data:application/font-woff;charset=utf-8;base64, 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');\n font-weight: 400;\n font-style: normal;\n}\n/* FONT_END */\n:root {\n --swiper-theme-color: #183C8F;\n}\n:host {\n position: relative;\n display: block;\n margin-left: auto;\n margin-right: auto;\n z-index: 1;\n}\nlgr-slider {\n border-bottom-right-radius: 128px;\n}\n.swiper {\n margin-left: auto;\n margin-right: auto;\n position: relative;\n overflow: hidden;\n list-style: none;\n padding: 0;\n height: 328px;\n /* Fix of Webkit flickering */\n z-index: 1;\n display: block;\n}\n@media (min-width: $lgr-grid-md-break-point) {\n .swiper {\n height: 454px;\n }\n}\n.swiper-vertical > .swiper-wrapper {\n flex-direction: column;\n}\n.swiper-wrapper {\n position: relative;\n width: 100%;\n height: 100%;\n z-index: 1;\n display: flex;\n transition-property: transform;\n transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);\n box-sizing: content-box;\n}\n.swiper-android .swiper-slide,\n.swiper-ios .swiper-slide,\n.swiper-wrapper {\n transform: translate3d(0px, 0, 0);\n}\n.swiper-horizontal {\n touch-action: pan-y;\n}\n.swiper-vertical {\n touch-action: pan-x;\n}\n.swiper-slide {\n flex-shrink: 0;\n width: 100%;\n height: 100%;\n position: relative;\n transition-property: transform;\n display: flex;\n align-items: center;\n justify-content: space-between;\n flex-direction: column;\n}\n.swiper-slide::before {\n content: \"\"\n}\n.swiper-slide-invisible-blank {\n visibility: hidden;\n}\n/* Auto Height */\n.swiper-autoheight,\n.swiper-autoheight .swiper-slide {\n height: auto;\n}\n.swiper-autoheight .swiper-wrapper {\n align-items: flex-start;\n transition-property: transform, height;\n}\n.swiper-backface-hidden .swiper-slide {\n transform: translateZ(0);\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n}\n/* 3D Effects */\n.swiper-3d.swiper-css-mode .swiper-wrapper {\n perspective: 1200px;\n}\n.swiper-3d .swiper-wrapper {\n transform-style: preserve-3d;\n}\n.swiper-3d {\n perspective: 1200px;\n}\n.swiper-3d .swiper-slide,\n.swiper-3d .swiper-cube-shadow {\n transform-style: preserve-3d;\n}\n/* CSS Mode */\n.swiper-css-mode > .swiper-wrapper {\n overflow: auto;\n scrollbar-width: none;\n /* For Firefox */\n -ms-overflow-style: none;\n /* For Internet Explorer and Edge */\n}\n.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {\n display: none;\n}\n.swiper-css-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: start start;\n}\n.swiper-css-mode.swiper-horizontal > .swiper-wrapper {\n scroll-snap-type: x mandatory;\n}\n.swiper-css-mode.swiper-vertical > .swiper-wrapper {\n scroll-snap-type: y mandatory;\n}\n.swiper-css-mode.swiper-free-mode > .swiper-wrapper {\n scroll-snap-type: none;\n}\n.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: none;\n}\n.swiper-css-mode.swiper-centered > .swiper-wrapper::before {\n content: '';\n flex-shrink: 0;\n order: 9999;\n}\n.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {\n scroll-snap-align: center center;\n scroll-snap-stop: always;\n}\n.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {\n margin-inline-start: var(--swiper-centered-offset-before);\n}\n.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {\n height: 100%;\n min-height: 1px;\n width: var(--swiper-centered-offset-after);\n}\n.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {\n margin-block-start: var(--swiper-centered-offset-before);\n}\n.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {\n width: 100%;\n min-width: 1px;\n height: var(--swiper-centered-offset-after);\n}\n/* Slide styles start */\n/* 3D Shadows */\n.swiper-3d .swiper-slide-shadow,\n.swiper-3d .swiper-slide-shadow-left,\n.swiper-3d .swiper-slide-shadow-right,\n.swiper-3d .swiper-slide-shadow-top,\n.swiper-3d .swiper-slide-shadow-bottom,\n.swiper-3d .swiper-slide-shadow,\n.swiper-3d .swiper-slide-shadow-left,\n.swiper-3d .swiper-slide-shadow-right,\n.swiper-3d .swiper-slide-shadow-top,\n.swiper-3d .swiper-slide-shadow-bottom {\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n z-index: 10;\n}\n.swiper-3d .swiper-slide-shadow {\n background: rgba(0, 0, 0, 0.15);\n}\n.swiper-3d .swiper-slide-shadow-left {\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n.swiper-3d .swiper-slide-shadow-right {\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n.swiper-3d .swiper-slide-shadow-top {\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n.swiper-3d .swiper-slide-shadow-bottom {\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\n}\n.swiper-lazy-preloader {\n width: 42px;\n height: 42px;\n position: absolute;\n left: 50%;\n top: 50%;\n margin-left: -21px;\n margin-top: -21px;\n z-index: 10;\n transform-origin: 50%;\n box-sizing: border-box;\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\n border-radius: 50%;\n border-top-color: transparent;\n}\n.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,\n.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {\n animation: swiper-preloader-spin 1s infinite linear;\n}\n.swiper-lazy-preloader-white {\n --swiper-preloader-color: #fff;\n}\n.swiper-lazy-preloader-black {\n --swiper-preloader-color: #000;\n}\n@keyframes swiper-preloader-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n/* Slide styles end */\n.swiper-virtual .swiper-slide {\n backface-visibility: hidden;\n transform: translateZ(0);\n}\n.swiper-virtual.swiper-css-mode .swiper-wrapper::after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n}\n.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {\n height: 1px;\n width: var(--swiper-virtual-size);\n}\n.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {\n width: 1px;\n height: var(--swiper-virtual-size);\n}\n:root {\n --swiper-navigation-size: 44px;\n /*\n --swiper-navigation-top-offset: 50%;\n --swiper-navigation-sides-offset: 10px;\n --swiper-navigation-color: var(--swiper-theme-color);\n */\n}\n.swiper-button-prev,\n.swiper-button-next {\n position: absolute;\n top: var(--swiper-navigation-top-offset, 50%);\n width: calc(var(--swiper-navigation-size) / 44 * 27);\n height: var(--swiper-navigation-size);\n margin-top: calc(0px - (var(--swiper-navigation-size) / 2));\n z-index: 10;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\n}\n.swiper-button-prev.swiper-button-disabled,\n.swiper-button-next.swiper-button-disabled {\n opacity: 0.35;\n cursor: auto;\n pointer-events: none;\n}\n.swiper-button-prev.swiper-button-hidden,\n.swiper-button-next.swiper-button-hidden {\n opacity: 0;\n cursor: auto;\n pointer-events: none;\n}\n.swiper-navigation-disabled .swiper-button-prev,\n.swiper-navigation-disabled .swiper-button-next {\n display: none !important;\n}\n.swiper-button-prev svg,\n.swiper-button-next svg {\n width: 100%;\n height: 100%;\n object-fit: contain;\n transform-origin: center;\n}\n.swiper-rtl .swiper-button-prev svg,\n.swiper-rtl .swiper-button-next svg {\n transform: rotate(180deg);\n}\n.swiper-button-prev,\n.swiper-rtl .swiper-button-next {\n left: var(--swiper-navigation-sides-offset, 10px);\n right: auto;\n}\n.swiper-button-next,\n.swiper-rtl .swiper-button-prev {\n right: var(--swiper-navigation-sides-offset, 10px);\n left: auto;\n}\n.swiper-button-lock {\n display: none;\n}\n/* Navigation font start */\n.swiper-button-prev:after,\n.swiper-button-next:after {\n font-family: swiper-icons;\n font-size: var(--swiper-navigation-size);\n text-transform: none !important;\n letter-spacing: 0;\n font-variant: initial;\n line-height: 1;\n}\n.swiper-button-prev:after,\n.swiper-rtl .swiper-button-next:after {\n content: 'prev';\n}\n.swiper-button-next,\n.swiper-rtl .swiper-button-prev {\n right: var(--swiper-navigation-sides-offset, 10px);\n left: auto;\n}\n.swiper-button-next:after,\n.swiper-rtl .swiper-button-prev:after {\n content: 'next';\n}\n/* Navigation font end */\n:root {\n --swiper-pagination-color: var(--swiper-theme-color);\n --swiper-pagination-left: auto;\n --swiper-pagination-right: 8px;\n --swiper-pagination-bottom: 8px;\n --swiper-pagination-top: auto;\n --swiper-pagination-fraction-color: inherit;\n --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);\n --swiper-pagination-progressbar-size: 4px;\n --swiper-pagination-bullet-size: 8px;\n --swiper-pagination-bullet-width: 40px;\n --swiper-pagination-bullet-height: 4px;\n --swiper-pagination-bullet-border-radius: 16px;\n --swiper-pagination-bullet-inactive-color: #FFF;\n --swiper-pagination-bullet-inactive-opacity: 1;\n --swiper-pagination-bullet-opacity: 1;\n --swiper-pagination-bullet-horizontal-gap: 4px;\n --swiper-pagination-bullet-vertical-gap: 6px;\n}\n.swiper-pagination {\n display: flex;\n align-items: center;\n justify-content: center;\n position: absolute;\n text-align: center;\n transition: 300ms opacity;\n transform: translate3d(0, 0, 0);\n z-index: 10;\n}\n.swiper-pagination.swiper-pagination-hidden {\n opacity: 0;\n}\n.swiper-pagination-disabled > .swiper-pagination,\n.swiper-pagination.swiper-pagination-disabled {\n display: none !important;\n}\n/* Common Styles */\n.swiper-pagination-fraction,\n.swiper-pagination-custom,\n.swiper-horizontal > .swiper-pagination-bullets,\n.swiper-pagination-bullets.swiper-pagination-horizontal {\n bottom: var(--swiper-pagination-bottom, 8px);\n top: var(--swiper-pagination-top, auto);\n left: 0;\n width: 100%;\n}\n/* Bullets */\n.swiper-pagination-bullets-dynamic {\n overflow: hidden;\n font-size: 0;\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transform: scale(0.33);\n position: relative;\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\n transform: scale(1);\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\n transform: scale(1);\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\n transform: scale(0.66);\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\n transform: scale(0.33);\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\n transform: scale(0.66);\n}\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\n transform: scale(0.33);\n}\n.swiper-pagination-bullet {\n width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));\n height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));\n display: inline-block;\n border-radius: var(--swiper-pagination-bullet-border-radius, 50%);\n background: var(--swiper-pagination-bullet-inactive-color, #FFF);\n opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);\n box-sizing: content-box;\n}\nbutton.swiper-pagination-bullet {\n border: none;\n margin: 0;\n padding: 0;\n box-shadow: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.swiper-pagination-clickable .swiper-pagination-bullet {\n cursor: pointer;\n}\n.swiper-pagination-bullet:only-child {\n display: none !important;\n}\n.swiper-pagination-bullet-active {\n opacity: var(--swiper-pagination-bullet-opacity, 1);\n border: 2px solid var(--swiper-pagination-color, var(--swiper-theme-color));\n}\n.swiper-vertical > .swiper-pagination-bullets,\n.swiper-pagination-vertical.swiper-pagination-bullets {\n right: var(--swiper-pagination-right, 8px);\n left: var(--swiper-pagination-left, auto);\n top: 50%;\n transform: translate3d(0px, -50%, 0);\n}\n.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,\n.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;\n display: block;\n}\n.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n top: 50%;\n transform: translateY(-50%);\n width: 8px;\n}\n.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,\n.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n display: inline-block;\n transition: 200ms transform,\n 200ms top;\n}\n.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,\n.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {\n margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px);\n}\n.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,\n.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\n left: 50%;\n transform: translateX(-50%);\n white-space: nowrap;\n}\n.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,\n.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 200ms transform,\n 200ms left;\n}\n.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\n transition: 200ms transform,\n 200ms right;\n}\n/* Fraction */\n.swiper-pagination-fraction {\n color: var(--swiper-pagination-fraction-color, inherit);\n}\n/* Progress */\n.swiper-pagination-progressbar {\n background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));\n position: absolute;\n}\n.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n transform: scale(0);\n transform-origin: left top;\n}\n.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\n transform-origin: right top;\n}\n.swiper-horizontal > .swiper-pagination-progressbar,\n.swiper-pagination-progressbar.swiper-pagination-horizontal,\n.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {\n width: 100%;\n height: var(--swiper-pagination-progressbar-size, 2px);\n left: 0;\n top: 0;\n}\n.swiper-vertical > .swiper-pagination-progressbar,\n.swiper-pagination-progressbar.swiper-pagination-vertical,\n.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,\n.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {\n width: var(--swiper-pagination-progressbar-size, 4px);\n height: 100%;\n left: 0;\n top: 0;\n}\n.swiper-pagination-lock {\n display: none;\n}\n.swiper-scrollbar {\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n position: relative;\n touch-action: none;\n background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));\n}\n.swiper-scrollbar-disabled > .swiper-scrollbar,\n.swiper-scrollbar.swiper-scrollbar-disabled {\n display: none !important;\n}\n.swiper-horizontal > .swiper-scrollbar,\n.swiper-scrollbar.swiper-scrollbar-horizontal {\n position: absolute;\n left: var(--swiper-scrollbar-sides-offset, 1%);\n bottom: var(--swiper-scrollbar-bottom, 4px);\n top: var(--swiper-scrollbar-top, auto);\n z-index: 50;\n height: var(--swiper-scrollbar-size, 4px);\n width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n}\n.swiper-vertical > .swiper-scrollbar,\n.swiper-scrollbar.swiper-scrollbar-vertical {\n position: absolute;\n left: var(--swiper-scrollbar-left, auto);\n right: var(--swiper-scrollbar-right, 4px);\n top: var(--swiper-scrollbar-sides-offset, 1%);\n z-index: 50;\n width: var(--swiper-scrollbar-size, 4px);\n height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));\n}\n.swiper-scrollbar-drag {\n height: 100%;\n width: 100%;\n position: relative;\n background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));\n border-radius: var(--swiper-scrollbar-border-radius, 10px);\n left: 0;\n top: 0;\n}\n.swiper-scrollbar-cursor-drag {\n cursor: move;\n}\n.swiper-scrollbar-lock {\n display: none;\n}\n/* Zoom container styles start */\n.swiper-zoom-container {\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n}\n.swiper-zoom-container > img,\n.swiper-zoom-container > svg,\n.swiper-zoom-container > canvas {\n max-width: 100%;\n max-height: 100%;\n object-fit: contain;\n}\n/* Zoom container styles end */\n.swiper-slide-zoomed {\n cursor: move;\n touch-action: none;\n}\n/* a11y */\n.swiper .swiper-notification {\n position: absolute;\n left: 0;\n top: 0;\n pointer-events: none;\n opacity: 0;\n z-index: -1000;\n}\n.swiper-free-mode > .swiper-wrapper {\n transition-timing-function: ease-out;\n margin: 0 auto;\n}\n.swiper-grid > .swiper-wrapper {\n flex-wrap: wrap;\n}\n.swiper-grid-column > .swiper-wrapper {\n flex-wrap: wrap;\n flex-direction: column;\n}\n.swiper-fade.swiper-free-mode .swiper-slide {\n transition-timing-function: ease-out;\n}\n.swiper-fade .swiper-slide {\n pointer-events: none;\n transition-property: opacity;\n}\n.swiper-fade .swiper-slide .swiper-slide {\n pointer-events: none;\n}\n.swiper-fade .swiper-slide-active {\n pointer-events: auto;\n}\n.swiper-fade .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n}\n.swiper-cube {\n overflow: visible;\n}\n.swiper-cube .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n visibility: hidden;\n transform-origin: 0 0;\n width: 100%;\n height: 100%;\n}\n.swiper-cube .swiper-slide .swiper-slide {\n pointer-events: none;\n}\n.swiper-cube.swiper-rtl .swiper-slide {\n transform-origin: 100% 0;\n}\n.swiper-cube .swiper-slide-active,\n.swiper-cube .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n}\n.swiper-cube .swiper-slide-active,\n.swiper-cube .swiper-slide-next,\n.swiper-cube .swiper-slide-prev {\n pointer-events: auto;\n visibility: visible;\n}\n.swiper-cube .swiper-cube-shadow {\n position: absolute;\n left: 0;\n bottom: 0px;\n width: 100%;\n height: 100%;\n opacity: 0.6;\n z-index: 0;\n}\n.swiper-cube .swiper-cube-shadow:before {\n content: '';\n background: #000;\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n filter: blur(50px);\n}\n.swiper-cube .swiper-slide-next + .swiper-slide {\n pointer-events: auto;\n visibility: visible;\n}\n/* Cube slide shadows start */\n.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,\n.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,\n.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,\n.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n}\n/* Cube slide shadows end */\n.swiper-flip {\n overflow: visible;\n}\n.swiper-flip .swiper-slide {\n pointer-events: none;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n z-index: 1;\n}\n.swiper-flip .swiper-slide .swiper-slide {\n pointer-events: none;\n}\n.swiper-flip .swiper-slide-active,\n.swiper-flip .swiper-slide-active .swiper-slide-active {\n pointer-events: auto;\n}\n/* Flip slide shadows start */\n.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,\n.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,\n.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,\n.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {\n z-index: 0;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n}\n/* Flip slide shadows end */\n.swiper-creative .swiper-slide {\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n transition-property: transform, opacity, height;\n}\n.swiper-cards {\n overflow: visible;\n}\n.swiper-cards .swiper-slide {\n transform-origin: center bottom;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n overflow: hidden;\n}","import { Component, Host, h, Element } from '@stencil/core';\nimport Swiper from 'swiper';\nimport { Navigation, Pagination, Autoplay } from 'swiper/modules';\n\n@Component({\n tag: 'lgr-slider',\n styleUrl: 'slider.scss',\n shadow: false,\n})\nexport class Slider {\n @Element() el!: HTMLLgrSliderElement;\n\n private swiper: Swiper | any;\n\n componentDidLoad() {\n const slidesLength = this.el.querySelectorAll(\"lgr-slide\").length;\n \n this.swiper;\n this.swiper = new Swiper('.swiper', {\n modules: [Navigation, Pagination, Autoplay],\n slidesPerView: 1,\n spaceBetween: 10,\n pagination: {\n el: '.swiper-pagination',\n clickable: true\n },\n loop: slidesLength > 1 ? true : false,\n autoplay: {\n delay: 3000,\n disableOnInteraction: false,\n pauseOnMouseEnter: true,\n },\n });\n }\n\n render() {\n return (\n \n
\n \n
\n
\n
\n );\n }\n}\n"],"mappings":"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"}