ctt-babylon 0.6.17 → 0.6.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/core/babylon-engine-modal-v2/babylon-engine-modal-v2.component.mjs +91 -0
- package/esm2022/lib/components/core/babylon-filter-modal-v2/babylon-filter-modal-v2.component.mjs +2 -2
- package/esm2022/lib/components/core/babylon-header-clear-v2/babylon-header-clear-v2.component.mjs +16 -7
- package/esm2022/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-info-img-v2/babylon-info-img-v2.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-language-modal-v2/babylon-language-modal-v2.component.mjs +28 -0
- package/esm2022/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-list-img-info/babylon-list-img-info.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-loyalty-table/babylon-loyalty-table.component.mjs +65 -0
- package/esm2022/lib/components/core/babylon-menu-modal/babylon-menu-modal.component.mjs +19 -0
- package/esm2022/lib/components/core/babylon-newsletter-modal/babylon-newsletter-modal.component.mjs +19 -0
- package/esm2022/lib/components/core/babylon-offer-detail-v2/babylon-offer-detail-v2.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-offer-popup-v2/babylon-offer-popup-v2.component.mjs +19 -0
- package/esm2022/lib/components/core/babylon-reviews/babylon-reviews.component.mjs +11 -0
- package/esm2022/lib/components/core/babylon-slider3col-v2/babylon-slider3col-v2.component.mjs +12 -0
- package/esm2022/lib/components/core/babylon-top-simple-img/babylon-top-simple-img.component.mjs +11 -0
- package/esm2022/public-api.mjs +13 -1
- package/fesm2022/ctt-babylon.mjs +310 -7
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-engine-modal-v2/babylon-engine-modal-v2.component.d.ts +37 -0
- package/lib/components/core/babylon-header-clear-v2/babylon-header-clear-v2.component.d.ts +1 -0
- package/lib/components/core/babylon-info-big-v3/babylon-info-big-v3.component.d.ts +5 -0
- package/lib/components/core/babylon-info-img-v2/babylon-info-img-v2.component.d.ts +5 -0
- package/lib/components/core/babylon-language-modal-v2/babylon-language-modal-v2.component.d.ts +12 -0
- package/lib/components/core/babylon-list-box-info/babylon-list-box-info.component.d.ts +5 -0
- package/lib/components/core/babylon-list-img-info/babylon-list-img-info.component.d.ts +5 -0
- package/lib/components/core/babylon-list-img-v2/babylon-list-img-v2.component.d.ts +5 -0
- package/lib/components/core/babylon-loyalty-table/babylon-loyalty-table.component.d.ts +10 -0
- package/lib/components/core/babylon-menu-modal/babylon-menu-modal.component.d.ts +7 -0
- package/lib/components/core/babylon-newsletter-modal/babylon-newsletter-modal.component.d.ts +7 -0
- package/lib/components/core/babylon-offer-detail-v2/babylon-offer-detail-v2.component.d.ts +5 -0
- package/lib/components/core/babylon-offer-popup-v2/babylon-offer-popup-v2.component.d.ts +7 -0
- package/lib/components/core/babylon-reviews/babylon-reviews.component.d.ts +5 -0
- package/lib/components/core/babylon-slider3col-v2/babylon-slider3col-v2.component.d.ts +5 -0
- package/lib/components/core/babylon-top-simple-img/babylon-top-simple-img.component.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +12 -0
package/esm2022/lib/components/core/babylon-header-clear-v2/babylon-header-clear-v2.component.mjs
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { CommonModule } from '@angular/common';
|
|
2
2
|
import { ChangeDetectionStrategy, Component, EventEmitter, Input, } from '@angular/core';
|
|
3
3
|
import { RouterModule } from '@angular/router';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { BabylonEngineModalV2Component } from '../babylon-engine-modal-v2/babylon-engine-modal-v2.component';
|
|
5
|
+
import { BabylonLanguageModalV2Component } from '../babylon-language-modal-v2/babylon-language-modal-v2.component';
|
|
6
|
+
import { BabylonMenuModalComponent } from '../babylon-menu-modal/babylon-menu-modal.component';
|
|
6
7
|
import { BabylonNewsletterComponent } from '../babylon-newsletter/babylon-newsletter.component';
|
|
7
8
|
import { BabylonOfferPopupComponent } from '../babylon-offer-popup/babylon-offer-popup.component';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
@@ -15,7 +16,7 @@ export class BabylonHeaderClearV2Component {
|
|
|
15
16
|
this.headerFixed = false;
|
|
16
17
|
}
|
|
17
18
|
openEngineModal() {
|
|
18
|
-
const dialogRef = this.dialog.open(
|
|
19
|
+
const dialogRef = this.dialog.open(BabylonEngineModalV2Component, {
|
|
19
20
|
width: '100vw',
|
|
20
21
|
height: '100vh',
|
|
21
22
|
maxWidth: '100vw',
|
|
@@ -28,7 +29,15 @@ export class BabylonHeaderClearV2Component {
|
|
|
28
29
|
dialogRef.componentInstance.close = event;
|
|
29
30
|
}
|
|
30
31
|
openLanguageModal() {
|
|
31
|
-
const dialogRef = this.dialog.open(
|
|
32
|
+
const dialogRef = this.dialog.open(BabylonLanguageModalV2Component, {
|
|
33
|
+
width: '100vw',
|
|
34
|
+
height: '100vh',
|
|
35
|
+
maxWidth: '100vw',
|
|
36
|
+
hasBackdrop: true,
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
openMenuModal() {
|
|
40
|
+
const dialogRef = this.dialog.open(BabylonMenuModalComponent, {
|
|
32
41
|
width: '100vw',
|
|
33
42
|
height: '100vh',
|
|
34
43
|
maxWidth: '100vw',
|
|
@@ -56,12 +65,12 @@ export class BabylonHeaderClearV2Component {
|
|
|
56
65
|
});
|
|
57
66
|
}
|
|
58
67
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonHeaderClearV2Component, deps: [{ token: i1.MatDialog }, { token: i2.ScreenSizerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
59
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonHeaderClearV2Component, isStandalone: true, selector: "lib-babylon-header-clear-v2", inputs: { headerFixed: "headerFixed" }, ngImport: i0, template: "<header class=\"header\">\n <div class=\"header__logo\">\n <a href=\"/homev4\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__logo--img\">\n <use\n href=\"/assets/babylon/svg/blanco-logo.svg#blanco-logo\"\n ></use>\n </svg>\n </a>\n </div>\n <div class=\"header__nav--desktop\">\n <span\n class=\"header__nav-lang js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n <span>Idiomas</span>\n </span>\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n >Book</span\n >\n <span class=\"header__nav-club\" role=\"button\">\n <span>Club Blanco</span>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n </span>\n </div>\n <div class=\"header__nav--mobile\">\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n >Book</span\n >\n <ul class=\"header__nav-links\">\n <!-- header__nav-links--currentColor -->\n <li\n class=\"header__nav-links--item js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-globe.svg#icon-globe\"\n ></use>\n </svg>\n </li>\n <!-- <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-whatsapp\"></use>\n </svg>\n </a>\n </li> -->\n <!-- <li class=\"header__nav-links--item js-active-modal\" data-modal_name=\"newsletter\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-envelope\"></use>\n </svg>\n </li> -->\n <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-user.svg#icon-user\"\n ></use>\n </svg>\n </a>\n </li>\n <li class=\"header__nav-links--item\">\n <a href=\"tel:'+34 971 328 451'\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-call.svg#icon-call\"\n ></use>\n </svg>\n </a>\n </li>\n </ul>\n </div>\n</header>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}body{padding-bottom:6.6rem;transition:all .5s}@media (min-width: 540px){body{padding-bottom:7.6rem}}@media (min-width: 768px){body{padding-bottom:8.6rem}}@media (min-width: 1024px){body{padding-bottom:0}}.header{position:fixed;inset:0 0 auto;display:flex;align-items:center;justify-content:center;z-index:2;padding-block:1.5rem;background:transparent;transition:all .5s;height:6rem}@media (min-width: 540px){.header{height:7rem}}@media (min-width: 768px){.header{height:8rem;opacity:1}}@media (min-width: 1024px){.header{padding-block:5rem;height:0;min-height:max-content}}@media (min-width: 1680px){.header{padding-block:6rem}}.header__logo{color:#616161;width:18.6rem;position:absolute;top:50%;left:50%;opacity:0;height:2.215rem;transform:translate(-50%,-50%);pointer-events:none;transition:all .5s}@media (min-width: 540px){.header__logo{width:22rem;height:2.619rem}}@media (min-width: 1024px){.header__logo{opacity:0;left:4rem;transform:translateY(-50%);width:18.6rem;height:2.215rem}}@media (min-width: 1280px){.header__logo{left:5rem}}@media (min-width: 1366px){.header__logo{left:6rem}}@media (min-width: 1680px){.header__logo{left:9rem}}@media (min-width: 1800px){.header__logo{left:10rem}}.header__logo--img{width:100%;height:100%}.header__nav--mobile{position:fixed;inset:auto 0 0;display:flex;color:#4a4a49;background:#fff;border-top:1px solid #dcdcdc;height:6.6rem;font-size:2.2rem;line-height:1;letter-spacing:.044rem}@media (min-width: 540px){.header__nav--mobile{height:7.6rem}}@media (min-width: 768px){.header__nav--mobile{height:8.6rem}}@media (min-width: 1024px){.header__nav--mobile{opacity:0;pointer-events:none}}@media (min-width: 1280px){.header__nav--mobile{display:none}}.header__nav--mobile span+span{border-left:1px solid #dcdcdc}.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{flex:1 0 50%;display:flex;justify-content:center;padding-top:2.2rem}@media (min-width: 540px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:2.7rem}}@media (min-width: 768px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:3.2rem}}.header__nav--mobile .header__nav-links{position:absolute;bottom:100%;left:50%;display:flex;gap:1.8rem;transform:translate(-50%,-1.3rem);border-radius:100vw;background:#4a4a49b3;padding-inline:1.2rem;color:#fff}@media (min-width: 540px){.header__nav--mobile .header__nav-links{transform:translate(-50%,-1.5rem)}}.header__nav--mobile .header__nav-links--item{width:4rem;aspect-ratio:1;display:flex;align-items:center;justify-content:center}.header__nav--mobile .header__nav-links--icon{width:2rem;height:2rem}.header__nav--mobile .header__nav-links--white{background:#fff;border:1px solid #dcdcdc;color:#4a4a49}.header__nav--desktop{display:none;color:#fff;transition:all .5s}@media (min-width: 768px){.header__nav--desktop{display:flex;align-items:center;opacity:0;pointer-events:none}}@media (min-width: 1024px){.header__nav--desktop{opacity:1;pointer-events:initial}}.header__nav--desktop .header__nav-book,.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{opacity:.7}.header__nav--desktop:hover .header__nav-book,.header__nav--desktop:hover .header__nav-menu,.header__nav--desktop:hover .header__nav-lang,.header__nav--desktop:hover .header__nav-club{opacity:.5}.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{border:1px solid #4a4a49;width:20rem;height:5rem;transition:all .5s;font-size:2.2rem;line-height:1;letter-spacing:.044rem;display:flex;justify-content:center;align-items:center;position:relative;z-index:1}@media (min-width: 1680px){.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{height:6rem}}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{z-index:0}@media (min-width: 1024px){.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{background:#fff;color:#4a4a49}}.header__nav--desktop .header__nav-menu:has(+.header__nav-menu),.header__nav--desktop .header__nav-menu:has(+.header__nav-book),.header__nav--desktop .header__nav-book:has(+.header__nav-menu),.header__nav--desktop .header__nav-book:has(+.header__nav-book){margin-right:-.1rem}.header__nav--desktop .header__nav-menu:has(+.header__nav-lang),.header__nav--desktop .header__nav-menu:has(+.header__nav-club),.header__nav--desktop .header__nav-book:has(+.header__nav-lang),.header__nav--desktop .header__nav-book:has(+.header__nav-club){margin-right:5rem}.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{transition:all .5s;display:flex;align-items:center;gap:1rem;white-space:nowrap;font-size:1.6rem;line-height:1;letter-spacing:.032rem;width:12.4rem}.header__nav--desktop .header__nav-lang:has(+.header__nav-menu),.header__nav--desktop .header__nav-lang:has(+.header__nav-book),.header__nav--desktop .header__nav-club:has(+.header__nav-menu),.header__nav--desktop .header__nav-club:has(+.header__nav-book){margin-right:5rem}.header__nav--desktop .header__nav-lang .header__nav--arrow,.header__nav--desktop .header__nav-club .header__nav--arrow{width:.9rem;height:.5rem;rotate:-90deg;transition:all .5s;opacity:0;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-lang{justify-content:flex-end}.header__nav--desktop .header__nav-lang .header__nav--arrow{rotate:90deg;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover,.header__nav--desktop .header__nav-lang:hover,.header__nav--desktop .header__nav-club:hover{opacity:1!important}.header__nav--desktop .header__nav-lang:hover .header__nav--arrow,.header__nav--desktop .header__nav-club:hover .header__nav--arrow{transform:translate(0);opacity:1}.inner-page .header,.header__sticky .header{background:#fff;padding-block:1.5rem;border-bottom:1px solid #dcdcdc;opacity:1}@media (min-width: 1024px){.inner-page .header,.header__sticky .header{height:8rem}}@media (min-width: 1680px){.inner-page .header,.header__sticky .header{height:9rem;padding-block:2rem}}.inner-page .header__logo,.header__sticky .header__logo{opacity:1;pointer-events:initial}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.inner-page .header__nav-lang,.inner-page .header__nav-club,.header__sticky .header__nav-menu,.header__sticky .header__nav-book,.header__sticky .header__nav-lang,.header__sticky .header__nav-club{opacity:.7}}@media (min-width: 1024px){.inner-page .header__nav--desktop,.header__sticky .header__nav--desktop{color:#4a4a49}.inner-page .header__nav--desktop:hover .header__nav-book,.inner-page .header__nav--desktop:hover .header__nav-menu,.inner-page .header__nav--desktop:hover .header__nav-lang,.inner-page .header__nav--desktop:hover .header__nav-club,.header__sticky .header__nav--desktop:hover .header__nav-book,.header__sticky .header__nav--desktop:hover .header__nav-menu,.header__sticky .header__nav--desktop:hover .header__nav-lang,.header__sticky .header__nav--desktop:hover .header__nav-club{opacity:.5}}.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border:1px solid black}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border-color:#4a4a49;width:15rem}}@media (min-width: 1280px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{width:20rem}}@media (min-width: 1680px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{height:5rem}}@media (min-width: 1024px){.inner-page .header__nav-menu:hover,.inner-page .header__nav-book:hover,.header__sticky .header__nav-menu:hover,.header__sticky .header__nav-book:hover{border-color:#f9f8f5;background:#f9f8f5}}\n"], dependencies: [{ kind: "ngmodule", type: RouterModule }, { kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
68
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonHeaderClearV2Component, isStandalone: true, selector: "lib-babylon-header-clear-v2", inputs: { headerFixed: "headerFixed" }, ngImport: i0, template: "<header class=\"header\">\n <div class=\"header__logo\">\n <a href=\"/home\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__logo--img\">\n <use\n href=\"/assets/babylon/svg/blanco-logo.svg#blanco-logo\"\n ></use>\n </svg>\n </a>\n </div>\n <div class=\"header__nav--desktop\">\n <span\n class=\"header__nav-lang js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n (click)=\"openLanguageModal()\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n <span>Idiomas</span>\n </span>\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n (click)=\"openMenuModal()\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n (click)=\"openEngineModal()\"\n >Book</span\n >\n <span class=\"header__nav-club\" role=\"button\">\n <span>Club Blanco</span>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n </span>\n </div>\n <div class=\"header__nav--mobile\">\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n (click)=\"openEngineModal()\"\n >Book</span\n >\n <ul class=\"header__nav-links\">\n <!-- header__nav-links--currentColor -->\n <li\n class=\"header__nav-links--item js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-globe.svg#icon-globe\"\n ></use>\n </svg>\n </li>\n <!-- <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-whatsapp\"></use>\n </svg>\n </a>\n </li> -->\n <!-- <li class=\"header__nav-links--item js-active-modal\" data-modal_name=\"newsletter\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-envelope\"></use>\n </svg>\n </li> -->\n <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-user.svg#icon-user\"\n ></use>\n </svg>\n </a>\n </li>\n <li class=\"header__nav-links--item\">\n <a href=\"tel:'+34 971 328 451'\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-call.svg#icon-call\"\n ></use>\n </svg>\n </a>\n </li>\n </ul>\n </div>\n</header>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}body{padding-bottom:6.6rem;transition:all .5s}@media (min-width: 540px){body{padding-bottom:7.6rem}}@media (min-width: 768px){body{padding-bottom:8.6rem}}@media (min-width: 1024px){body{padding-bottom:0}}.header{position:fixed;inset:0 0 auto;display:flex;align-items:center;justify-content:center;z-index:2;padding-block:1.5rem;background:transparent;transition:all .5s;height:6rem}@media (min-width: 540px){.header{height:7rem}}@media (min-width: 768px){.header{height:8rem;opacity:1}}@media (min-width: 1024px){.header{padding-block:5rem;height:0;min-height:max-content}}@media (min-width: 1680px){.header{padding-block:6rem}}.header__logo{color:#616161;width:18.6rem;position:absolute;top:50%;left:50%;opacity:0;height:2.215rem;transform:translate(-50%,-50%);pointer-events:none;transition:all .5s}@media (min-width: 540px){.header__logo{width:22rem;height:2.619rem}}@media (min-width: 1024px){.header__logo{opacity:0;left:4rem;transform:translateY(-50%);width:18.6rem;height:2.215rem}}@media (min-width: 1280px){.header__logo{left:5rem}}@media (min-width: 1366px){.header__logo{left:6rem}}@media (min-width: 1680px){.header__logo{left:9rem}}@media (min-width: 1800px){.header__logo{left:10rem}}.header__logo--img{width:100%;height:100%}.header__nav--mobile{position:fixed;inset:auto 0 0;display:flex;color:#4a4a49;background:#fff;border-top:1px solid #dcdcdc;height:6.6rem;font-size:2.2rem;line-height:1;letter-spacing:.044rem}@media (min-width: 540px){.header__nav--mobile{height:7.6rem}}@media (min-width: 768px){.header__nav--mobile{height:8.6rem}}@media (min-width: 1024px){.header__nav--mobile{opacity:0;pointer-events:none}}@media (min-width: 1280px){.header__nav--mobile{display:none}}.header__nav--mobile span+span{border-left:1px solid #dcdcdc}.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{flex:1 0 50%;display:flex;justify-content:center;padding-top:2.2rem}@media (min-width: 540px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:2.7rem}}@media (min-width: 768px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:3.2rem}}.header__nav--mobile .header__nav-links{position:absolute;bottom:100%;left:50%;display:flex;gap:1.8rem;transform:translate(-50%,-1.3rem);border-radius:100vw;background:#4a4a49b3;padding-inline:1.2rem;color:#fff}@media (min-width: 540px){.header__nav--mobile .header__nav-links{transform:translate(-50%,-1.5rem)}}.header__nav--mobile .header__nav-links--item{width:4rem;aspect-ratio:1;display:flex;align-items:center;justify-content:center}.header__nav--mobile .header__nav-links--icon{width:2rem;height:2rem}.header__nav--mobile .header__nav-links--white{background:#fff;border:1px solid #dcdcdc;color:#4a4a49}.header__nav--desktop{display:none;color:#fff;transition:all .5s}@media (min-width: 768px){.header__nav--desktop{display:flex;align-items:center;opacity:0;pointer-events:none}}@media (min-width: 1024px){.header__nav--desktop{opacity:1;pointer-events:initial}}.header__nav--desktop .header__nav-book,.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{opacity:.7}.header__nav--desktop:hover .header__nav-book,.header__nav--desktop:hover .header__nav-menu,.header__nav--desktop:hover .header__nav-lang,.header__nav--desktop:hover .header__nav-club{opacity:.5}.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{border:1px solid #4a4a49;width:20rem;height:5rem;transition:all .5s;font-size:2.2rem;line-height:1;letter-spacing:.044rem;display:flex;justify-content:center;align-items:center;position:relative;z-index:1}@media (min-width: 1680px){.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{height:6rem}}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{z-index:0}@media (min-width: 1024px){.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{background:#fff;color:#4a4a49}}.header__nav--desktop .header__nav-menu:has(+.header__nav-menu),.header__nav--desktop .header__nav-menu:has(+.header__nav-book),.header__nav--desktop .header__nav-book:has(+.header__nav-menu),.header__nav--desktop .header__nav-book:has(+.header__nav-book){margin-right:-.1rem}.header__nav--desktop .header__nav-menu:has(+.header__nav-lang),.header__nav--desktop .header__nav-menu:has(+.header__nav-club),.header__nav--desktop .header__nav-book:has(+.header__nav-lang),.header__nav--desktop .header__nav-book:has(+.header__nav-club){margin-right:5rem}.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{transition:all .5s;display:flex;align-items:center;gap:1rem;white-space:nowrap;font-size:1.6rem;line-height:1;letter-spacing:.032rem;width:12.4rem}.header__nav--desktop .header__nav-lang:has(+.header__nav-menu),.header__nav--desktop .header__nav-lang:has(+.header__nav-book),.header__nav--desktop .header__nav-club:has(+.header__nav-menu),.header__nav--desktop .header__nav-club:has(+.header__nav-book){margin-right:5rem}.header__nav--desktop .header__nav-lang .header__nav--arrow,.header__nav--desktop .header__nav-club .header__nav--arrow{width:.9rem;height:.5rem;rotate:-90deg;transition:all .5s;opacity:0;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-lang{justify-content:flex-end}.header__nav--desktop .header__nav-lang .header__nav--arrow{rotate:90deg;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover,.header__nav--desktop .header__nav-lang:hover,.header__nav--desktop .header__nav-club:hover{opacity:1!important}.header__nav--desktop .header__nav-lang:hover .header__nav--arrow,.header__nav--desktop .header__nav-club:hover .header__nav--arrow{transform:translate(0);opacity:1}.inner-page .header,.header__sticky .header{background:#fff;padding-block:1.5rem;border-bottom:1px solid #dcdcdc;opacity:1}@media (min-width: 1024px){.inner-page .header,.header__sticky .header{height:8rem}}@media (min-width: 1680px){.inner-page .header,.header__sticky .header{height:9rem;padding-block:2rem}}.inner-page .header__logo,.header__sticky .header__logo{opacity:1;pointer-events:initial}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.inner-page .header__nav-lang,.inner-page .header__nav-club,.header__sticky .header__nav-menu,.header__sticky .header__nav-book,.header__sticky .header__nav-lang,.header__sticky .header__nav-club{opacity:.7}}@media (min-width: 1024px){.inner-page .header__nav--desktop,.header__sticky .header__nav--desktop{color:#4a4a49}.inner-page .header__nav--desktop:hover .header__nav-book,.inner-page .header__nav--desktop:hover .header__nav-menu,.inner-page .header__nav--desktop:hover .header__nav-lang,.inner-page .header__nav--desktop:hover .header__nav-club,.header__sticky .header__nav--desktop:hover .header__nav-book,.header__sticky .header__nav--desktop:hover .header__nav-menu,.header__sticky .header__nav--desktop:hover .header__nav-lang,.header__sticky .header__nav--desktop:hover .header__nav-club{opacity:.5}}.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border:1px solid black}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border-color:#4a4a49;width:15rem}}@media (min-width: 1280px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{width:20rem}}@media (min-width: 1680px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{height:5rem}}@media (min-width: 1024px){.inner-page .header__nav-menu:hover,.inner-page .header__nav-book:hover,.header__sticky .header__nav-menu:hover,.header__sticky .header__nav-book:hover{border-color:#f9f8f5;background:#f9f8f5}}\n"], dependencies: [{ kind: "ngmodule", type: RouterModule }, { kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
60
69
|
}
|
|
61
70
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonHeaderClearV2Component, decorators: [{
|
|
62
71
|
type: Component,
|
|
63
|
-
args: [{ selector: 'lib-babylon-header-clear-v2', standalone: true, imports: [RouterModule, CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<header class=\"header\">\n <div class=\"header__logo\">\n <a href=\"/homev4\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__logo--img\">\n <use\n href=\"/assets/babylon/svg/blanco-logo.svg#blanco-logo\"\n ></use>\n </svg>\n </a>\n </div>\n <div class=\"header__nav--desktop\">\n <span\n class=\"header__nav-lang js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n <span>Idiomas</span>\n </span>\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n >Book</span\n >\n <span class=\"header__nav-club\" role=\"button\">\n <span>Club Blanco</span>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n </span>\n </div>\n <div class=\"header__nav--mobile\">\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n >Book</span\n >\n <ul class=\"header__nav-links\">\n <!-- header__nav-links--currentColor -->\n <li\n class=\"header__nav-links--item js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-globe.svg#icon-globe\"\n ></use>\n </svg>\n </li>\n <!-- <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-whatsapp\"></use>\n </svg>\n </a>\n </li> -->\n <!-- <li class=\"header__nav-links--item js-active-modal\" data-modal_name=\"newsletter\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-envelope\"></use>\n </svg>\n </li> -->\n <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-user.svg#icon-user\"\n ></use>\n </svg>\n </a>\n </li>\n <li class=\"header__nav-links--item\">\n <a href=\"tel:'+34 971 328 451'\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-call.svg#icon-call\"\n ></use>\n </svg>\n </a>\n </li>\n </ul>\n </div>\n</header>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}body{padding-bottom:6.6rem;transition:all .5s}@media (min-width: 540px){body{padding-bottom:7.6rem}}@media (min-width: 768px){body{padding-bottom:8.6rem}}@media (min-width: 1024px){body{padding-bottom:0}}.header{position:fixed;inset:0 0 auto;display:flex;align-items:center;justify-content:center;z-index:2;padding-block:1.5rem;background:transparent;transition:all .5s;height:6rem}@media (min-width: 540px){.header{height:7rem}}@media (min-width: 768px){.header{height:8rem;opacity:1}}@media (min-width: 1024px){.header{padding-block:5rem;height:0;min-height:max-content}}@media (min-width: 1680px){.header{padding-block:6rem}}.header__logo{color:#616161;width:18.6rem;position:absolute;top:50%;left:50%;opacity:0;height:2.215rem;transform:translate(-50%,-50%);pointer-events:none;transition:all .5s}@media (min-width: 540px){.header__logo{width:22rem;height:2.619rem}}@media (min-width: 1024px){.header__logo{opacity:0;left:4rem;transform:translateY(-50%);width:18.6rem;height:2.215rem}}@media (min-width: 1280px){.header__logo{left:5rem}}@media (min-width: 1366px){.header__logo{left:6rem}}@media (min-width: 1680px){.header__logo{left:9rem}}@media (min-width: 1800px){.header__logo{left:10rem}}.header__logo--img{width:100%;height:100%}.header__nav--mobile{position:fixed;inset:auto 0 0;display:flex;color:#4a4a49;background:#fff;border-top:1px solid #dcdcdc;height:6.6rem;font-size:2.2rem;line-height:1;letter-spacing:.044rem}@media (min-width: 540px){.header__nav--mobile{height:7.6rem}}@media (min-width: 768px){.header__nav--mobile{height:8.6rem}}@media (min-width: 1024px){.header__nav--mobile{opacity:0;pointer-events:none}}@media (min-width: 1280px){.header__nav--mobile{display:none}}.header__nav--mobile span+span{border-left:1px solid #dcdcdc}.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{flex:1 0 50%;display:flex;justify-content:center;padding-top:2.2rem}@media (min-width: 540px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:2.7rem}}@media (min-width: 768px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:3.2rem}}.header__nav--mobile .header__nav-links{position:absolute;bottom:100%;left:50%;display:flex;gap:1.8rem;transform:translate(-50%,-1.3rem);border-radius:100vw;background:#4a4a49b3;padding-inline:1.2rem;color:#fff}@media (min-width: 540px){.header__nav--mobile .header__nav-links{transform:translate(-50%,-1.5rem)}}.header__nav--mobile .header__nav-links--item{width:4rem;aspect-ratio:1;display:flex;align-items:center;justify-content:center}.header__nav--mobile .header__nav-links--icon{width:2rem;height:2rem}.header__nav--mobile .header__nav-links--white{background:#fff;border:1px solid #dcdcdc;color:#4a4a49}.header__nav--desktop{display:none;color:#fff;transition:all .5s}@media (min-width: 768px){.header__nav--desktop{display:flex;align-items:center;opacity:0;pointer-events:none}}@media (min-width: 1024px){.header__nav--desktop{opacity:1;pointer-events:initial}}.header__nav--desktop .header__nav-book,.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{opacity:.7}.header__nav--desktop:hover .header__nav-book,.header__nav--desktop:hover .header__nav-menu,.header__nav--desktop:hover .header__nav-lang,.header__nav--desktop:hover .header__nav-club{opacity:.5}.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{border:1px solid #4a4a49;width:20rem;height:5rem;transition:all .5s;font-size:2.2rem;line-height:1;letter-spacing:.044rem;display:flex;justify-content:center;align-items:center;position:relative;z-index:1}@media (min-width: 1680px){.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{height:6rem}}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{z-index:0}@media (min-width: 1024px){.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{background:#fff;color:#4a4a49}}.header__nav--desktop .header__nav-menu:has(+.header__nav-menu),.header__nav--desktop .header__nav-menu:has(+.header__nav-book),.header__nav--desktop .header__nav-book:has(+.header__nav-menu),.header__nav--desktop .header__nav-book:has(+.header__nav-book){margin-right:-.1rem}.header__nav--desktop .header__nav-menu:has(+.header__nav-lang),.header__nav--desktop .header__nav-menu:has(+.header__nav-club),.header__nav--desktop .header__nav-book:has(+.header__nav-lang),.header__nav--desktop .header__nav-book:has(+.header__nav-club){margin-right:5rem}.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{transition:all .5s;display:flex;align-items:center;gap:1rem;white-space:nowrap;font-size:1.6rem;line-height:1;letter-spacing:.032rem;width:12.4rem}.header__nav--desktop .header__nav-lang:has(+.header__nav-menu),.header__nav--desktop .header__nav-lang:has(+.header__nav-book),.header__nav--desktop .header__nav-club:has(+.header__nav-menu),.header__nav--desktop .header__nav-club:has(+.header__nav-book){margin-right:5rem}.header__nav--desktop .header__nav-lang .header__nav--arrow,.header__nav--desktop .header__nav-club .header__nav--arrow{width:.9rem;height:.5rem;rotate:-90deg;transition:all .5s;opacity:0;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-lang{justify-content:flex-end}.header__nav--desktop .header__nav-lang .header__nav--arrow{rotate:90deg;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover,.header__nav--desktop .header__nav-lang:hover,.header__nav--desktop .header__nav-club:hover{opacity:1!important}.header__nav--desktop .header__nav-lang:hover .header__nav--arrow,.header__nav--desktop .header__nav-club:hover .header__nav--arrow{transform:translate(0);opacity:1}.inner-page .header,.header__sticky .header{background:#fff;padding-block:1.5rem;border-bottom:1px solid #dcdcdc;opacity:1}@media (min-width: 1024px){.inner-page .header,.header__sticky .header{height:8rem}}@media (min-width: 1680px){.inner-page .header,.header__sticky .header{height:9rem;padding-block:2rem}}.inner-page .header__logo,.header__sticky .header__logo{opacity:1;pointer-events:initial}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.inner-page .header__nav-lang,.inner-page .header__nav-club,.header__sticky .header__nav-menu,.header__sticky .header__nav-book,.header__sticky .header__nav-lang,.header__sticky .header__nav-club{opacity:.7}}@media (min-width: 1024px){.inner-page .header__nav--desktop,.header__sticky .header__nav--desktop{color:#4a4a49}.inner-page .header__nav--desktop:hover .header__nav-book,.inner-page .header__nav--desktop:hover .header__nav-menu,.inner-page .header__nav--desktop:hover .header__nav-lang,.inner-page .header__nav--desktop:hover .header__nav-club,.header__sticky .header__nav--desktop:hover .header__nav-book,.header__sticky .header__nav--desktop:hover .header__nav-menu,.header__sticky .header__nav--desktop:hover .header__nav-lang,.header__sticky .header__nav--desktop:hover .header__nav-club{opacity:.5}}.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border:1px solid black}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border-color:#4a4a49;width:15rem}}@media (min-width: 1280px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{width:20rem}}@media (min-width: 1680px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{height:5rem}}@media (min-width: 1024px){.inner-page .header__nav-menu:hover,.inner-page .header__nav-book:hover,.header__sticky .header__nav-menu:hover,.header__sticky .header__nav-book:hover{border-color:#f9f8f5;background:#f9f8f5}}\n"] }]
|
|
72
|
+
args: [{ selector: 'lib-babylon-header-clear-v2', standalone: true, imports: [RouterModule, CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<header class=\"header\">\n <div class=\"header__logo\">\n <a href=\"/home\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__logo--img\">\n <use\n href=\"/assets/babylon/svg/blanco-logo.svg#blanco-logo\"\n ></use>\n </svg>\n </a>\n </div>\n <div class=\"header__nav--desktop\">\n <span\n class=\"header__nav-lang js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n (click)=\"openLanguageModal()\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n <span>Idiomas</span>\n </span>\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n (click)=\"openMenuModal()\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n (click)=\"openEngineModal()\"\n >Book</span\n >\n <span class=\"header__nav-club\" role=\"button\">\n <span>Club Blanco</span>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav--arrow\"\n >\n <use href=\"/assets/babylon/svg/icon-arrow.svg#icon-arrow\"></use>\n </svg>\n </span>\n </div>\n <div class=\"header__nav--mobile\">\n <span\n class=\"header__nav-menu js-active-modal\"\n data-modal_name=\"menu\"\n role=\"button\"\n >Menu</span\n >\n <span\n class=\"header__nav-book js-active-modal\"\n data-modal_name=\"reservar\"\n role=\"button\"\n (click)=\"openEngineModal()\"\n >Book</span\n >\n <ul class=\"header__nav-links\">\n <!-- header__nav-links--currentColor -->\n <li\n class=\"header__nav-links--item js-active-modal\"\n data-modal_name=\"language\"\n role=\"button\"\n >\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-globe.svg#icon-globe\"\n ></use>\n </svg>\n </li>\n <!-- <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-whatsapp\"></use>\n </svg>\n </a>\n </li> -->\n <!-- <li class=\"header__nav-links--item js-active-modal\" data-modal_name=\"newsletter\">\n <svg aria-hidden=\"true\" focusable=\"false\" class=\"header__nav-links--icon\">\n <use href=\"#icon-envelope\"></use>\n </svg>\n </li> -->\n <li class=\"header__nav-links--item\">\n <a href=\"/\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-user.svg#icon-user\"\n ></use>\n </svg>\n </a>\n </li>\n <li class=\"header__nav-links--item\">\n <a href=\"tel:'+34 971 328 451'\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"header__nav-links--icon\"\n >\n <use\n href=\"/assets/babylon/svg/icon-call.svg#icon-call\"\n ></use>\n </svg>\n </a>\n </li>\n </ul>\n </div>\n</header>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}body{padding-bottom:6.6rem;transition:all .5s}@media (min-width: 540px){body{padding-bottom:7.6rem}}@media (min-width: 768px){body{padding-bottom:8.6rem}}@media (min-width: 1024px){body{padding-bottom:0}}.header{position:fixed;inset:0 0 auto;display:flex;align-items:center;justify-content:center;z-index:2;padding-block:1.5rem;background:transparent;transition:all .5s;height:6rem}@media (min-width: 540px){.header{height:7rem}}@media (min-width: 768px){.header{height:8rem;opacity:1}}@media (min-width: 1024px){.header{padding-block:5rem;height:0;min-height:max-content}}@media (min-width: 1680px){.header{padding-block:6rem}}.header__logo{color:#616161;width:18.6rem;position:absolute;top:50%;left:50%;opacity:0;height:2.215rem;transform:translate(-50%,-50%);pointer-events:none;transition:all .5s}@media (min-width: 540px){.header__logo{width:22rem;height:2.619rem}}@media (min-width: 1024px){.header__logo{opacity:0;left:4rem;transform:translateY(-50%);width:18.6rem;height:2.215rem}}@media (min-width: 1280px){.header__logo{left:5rem}}@media (min-width: 1366px){.header__logo{left:6rem}}@media (min-width: 1680px){.header__logo{left:9rem}}@media (min-width: 1800px){.header__logo{left:10rem}}.header__logo--img{width:100%;height:100%}.header__nav--mobile{position:fixed;inset:auto 0 0;display:flex;color:#4a4a49;background:#fff;border-top:1px solid #dcdcdc;height:6.6rem;font-size:2.2rem;line-height:1;letter-spacing:.044rem}@media (min-width: 540px){.header__nav--mobile{height:7.6rem}}@media (min-width: 768px){.header__nav--mobile{height:8.6rem}}@media (min-width: 1024px){.header__nav--mobile{opacity:0;pointer-events:none}}@media (min-width: 1280px){.header__nav--mobile{display:none}}.header__nav--mobile span+span{border-left:1px solid #dcdcdc}.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{flex:1 0 50%;display:flex;justify-content:center;padding-top:2.2rem}@media (min-width: 540px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:2.7rem}}@media (min-width: 768px){.header__nav--mobile .header__nav-menu,.header__nav--mobile .header__nav-book{padding-top:3.2rem}}.header__nav--mobile .header__nav-links{position:absolute;bottom:100%;left:50%;display:flex;gap:1.8rem;transform:translate(-50%,-1.3rem);border-radius:100vw;background:#4a4a49b3;padding-inline:1.2rem;color:#fff}@media (min-width: 540px){.header__nav--mobile .header__nav-links{transform:translate(-50%,-1.5rem)}}.header__nav--mobile .header__nav-links--item{width:4rem;aspect-ratio:1;display:flex;align-items:center;justify-content:center}.header__nav--mobile .header__nav-links--icon{width:2rem;height:2rem}.header__nav--mobile .header__nav-links--white{background:#fff;border:1px solid #dcdcdc;color:#4a4a49}.header__nav--desktop{display:none;color:#fff;transition:all .5s}@media (min-width: 768px){.header__nav--desktop{display:flex;align-items:center;opacity:0;pointer-events:none}}@media (min-width: 1024px){.header__nav--desktop{opacity:1;pointer-events:initial}}.header__nav--desktop .header__nav-book,.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{opacity:.7}.header__nav--desktop:hover .header__nav-book,.header__nav--desktop:hover .header__nav-menu,.header__nav--desktop:hover .header__nav-lang,.header__nav--desktop:hover .header__nav-club{opacity:.5}.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{border:1px solid #4a4a49;width:20rem;height:5rem;transition:all .5s;font-size:2.2rem;line-height:1;letter-spacing:.044rem;display:flex;justify-content:center;align-items:center;position:relative;z-index:1}@media (min-width: 1680px){.header__nav--desktop .header__nav-menu,.header__nav--desktop .header__nav-book{height:6rem}}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{z-index:0}@media (min-width: 1024px){.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover{background:#fff;color:#4a4a49}}.header__nav--desktop .header__nav-menu:has(+.header__nav-menu),.header__nav--desktop .header__nav-menu:has(+.header__nav-book),.header__nav--desktop .header__nav-book:has(+.header__nav-menu),.header__nav--desktop .header__nav-book:has(+.header__nav-book){margin-right:-.1rem}.header__nav--desktop .header__nav-menu:has(+.header__nav-lang),.header__nav--desktop .header__nav-menu:has(+.header__nav-club),.header__nav--desktop .header__nav-book:has(+.header__nav-lang),.header__nav--desktop .header__nav-book:has(+.header__nav-club){margin-right:5rem}.header__nav--desktop .header__nav-lang,.header__nav--desktop .header__nav-club{transition:all .5s;display:flex;align-items:center;gap:1rem;white-space:nowrap;font-size:1.6rem;line-height:1;letter-spacing:.032rem;width:12.4rem}.header__nav--desktop .header__nav-lang:has(+.header__nav-menu),.header__nav--desktop .header__nav-lang:has(+.header__nav-book),.header__nav--desktop .header__nav-club:has(+.header__nav-menu),.header__nav--desktop .header__nav-club:has(+.header__nav-book){margin-right:5rem}.header__nav--desktop .header__nav-lang .header__nav--arrow,.header__nav--desktop .header__nav-club .header__nav--arrow{width:.9rem;height:.5rem;rotate:-90deg;transition:all .5s;opacity:0;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-lang{justify-content:flex-end}.header__nav--desktop .header__nav-lang .header__nav--arrow{rotate:90deg;transform:translateY(-.5rem)}.header__nav--desktop .header__nav-menu:hover,.header__nav--desktop .header__nav-book:hover,.header__nav--desktop .header__nav-lang:hover,.header__nav--desktop .header__nav-club:hover{opacity:1!important}.header__nav--desktop .header__nav-lang:hover .header__nav--arrow,.header__nav--desktop .header__nav-club:hover .header__nav--arrow{transform:translate(0);opacity:1}.inner-page .header,.header__sticky .header{background:#fff;padding-block:1.5rem;border-bottom:1px solid #dcdcdc;opacity:1}@media (min-width: 1024px){.inner-page .header,.header__sticky .header{height:8rem}}@media (min-width: 1680px){.inner-page .header,.header__sticky .header{height:9rem;padding-block:2rem}}.inner-page .header__logo,.header__sticky .header__logo{opacity:1;pointer-events:initial}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.inner-page .header__nav-lang,.inner-page .header__nav-club,.header__sticky .header__nav-menu,.header__sticky .header__nav-book,.header__sticky .header__nav-lang,.header__sticky .header__nav-club{opacity:.7}}@media (min-width: 1024px){.inner-page .header__nav--desktop,.header__sticky .header__nav--desktop{color:#4a4a49}.inner-page .header__nav--desktop:hover .header__nav-book,.inner-page .header__nav--desktop:hover .header__nav-menu,.inner-page .header__nav--desktop:hover .header__nav-lang,.inner-page .header__nav--desktop:hover .header__nav-club,.header__sticky .header__nav--desktop:hover .header__nav-book,.header__sticky .header__nav--desktop:hover .header__nav-menu,.header__sticky .header__nav--desktop:hover .header__nav-lang,.header__sticky .header__nav--desktop:hover .header__nav-club{opacity:.5}}.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border:1px solid black}@media (min-width: 1024px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{border-color:#4a4a49;width:15rem}}@media (min-width: 1280px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{width:20rem}}@media (min-width: 1680px){.inner-page .header__nav-menu,.inner-page .header__nav-book,.header__sticky .header__nav-menu,.header__sticky .header__nav-book{height:5rem}}@media (min-width: 1024px){.inner-page .header__nav-menu:hover,.inner-page .header__nav-book:hover,.header__sticky .header__nav-menu:hover,.header__sticky .header__nav-book:hover{border-color:#f9f8f5;background:#f9f8f5}}\n"] }]
|
|
64
73
|
}], ctorParameters: () => [{ type: i1.MatDialog }, { type: i2.ScreenSizerService }], propDecorators: { headerFixed: [{
|
|
65
74
|
type: Input
|
|
66
75
|
}] } });
|
|
67
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1oZWFkZXItY2xlYXItdjIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFieWxvbi9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taGVhZGVyLWNsZWFyLXYyL2JhYnlsb24taGVhZGVyLWNsZWFyLXYyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxHQUNSLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSx3REFBd0QsQ0FBQztBQUNyRyxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSw0REFBNEQsQ0FBQztBQUMzRyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUNoRyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQzs7OztBQVVsRyxNQUFNLE9BQU8sNkJBQTZCO0lBR3RDLFlBQ3FCLE1BQWlCLEVBQ2pCLFdBQStCO1FBRC9CLFdBQU0sR0FBTixNQUFNLENBQVc7UUFDakIsZ0JBQVcsR0FBWCxXQUFXLENBQW9CO1FBSjNDLGdCQUFXLEdBQVksS0FBSyxDQUFDO0lBS25DLENBQUM7SUFFSixlQUFlO1FBQ1gsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsMkJBQTJCLEVBQUU7WUFDNUQsS0FBSyxFQUFFLE9BQU87WUFDZCxNQUFNLEVBQUUsT0FBTztZQUNmLFFBQVEsRUFBRSxPQUFPO1lBQ2pCLFdBQVcsRUFBRSxJQUFJO1NBQ3BCLENBQUMsQ0FBQztRQUVILE1BQU0sS0FBSyxHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFFakMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDakIsU0FBUyxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ3RCLENBQUMsQ0FBQyxDQUFDO1FBRUgsU0FBUyxDQUFDLGlCQUFpQixDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDOUMsQ0FBQztJQUVELGlCQUFpQjtRQUNiLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDZCQUE2QixFQUFFO1lBQzlELEtBQUssRUFBRSxPQUFPO1lBQ2QsTUFBTSxFQUFFLE9BQU87WUFDZixRQUFRLEVBQUUsT0FBTztZQUNqQixXQUFXLEVBQUUsSUFBSTtTQUNwQixDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsU0FBUztRQUNMLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBCQUEwQixFQUFFO1lBQzNELEtBQUssRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU07WUFDMUQsTUFBTSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsTUFBTTtZQUMzRCxTQUFTLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxPQUFPO1lBQ2pFLFFBQVEsRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE9BQU87WUFDakUsV0FBVyxFQUFFLElBQUk7WUFDakIsVUFBVSxFQUFFLFlBQVk7U0FDM0IsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVELGNBQWM7UUFDVixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQywwQkFBMEIsRUFBRTtZQUMzRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxNQUFNO1lBQzFELE1BQU0sRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU07WUFDM0QsU0FBUyxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsT0FBTztZQUNqRSxRQUFRLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxPQUFPO1lBQ2pFLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLFVBQVUsRUFBRSxZQUFZO1NBQzNCLENBQUMsQ0FBQztJQUNQLENBQUM7K0dBdERRLDZCQUE2QjttR0FBN0IsNkJBQTZCLCtIQ3ZCMUMsb3ZJQXVIQSw4eWVEckdjLFlBQVksOEJBQUUsWUFBWTs7NEZBSzNCLDZCQUE2QjtrQkFSekMsU0FBUzsrQkFDSSw2QkFBNkIsY0FDM0IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxtQkFHcEIsdUJBQXVCLENBQUMsTUFBTTsrR0FHdEMsV0FBVztzQkFBbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgSW5wdXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBTY3JlZW5TaXplclNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBCYWJ5bG9uRW5naW5lTW9kYWxDb21wb25lbnQgfSBmcm9tICcuLi9iYWJ5bG9uLWVuZ2luZS1tb2RhbC9iYWJ5bG9uLWVuZ2luZS1tb2RhbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQmFieWxvbkxhbmd1YWdlTW9kYWxDb21wb25lbnQgfSBmcm9tICcuLi9iYWJ5bG9uLWxhbmd1YWdlLW1vZGFsL2JhYnlsb24tbGFuZ3VhZ2UtbW9kYWwuY29tcG9uZW50JztcbmltcG9ydCB7IEJhYnlsb25OZXdzbGV0dGVyQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFieWxvbi1uZXdzbGV0dGVyL2JhYnlsb24tbmV3c2xldHRlci5jb21wb25lbnQnO1xuaW1wb3J0IHsgQmFieWxvbk9mZmVyUG9wdXBDb21wb25lbnQgfSBmcm9tICcuLi9iYWJ5bG9uLW9mZmVyLXBvcHVwL2JhYnlsb24tb2ZmZXItcG9wdXAuY29tcG9uZW50JztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1oZWFkZXItY2xlYXItdjInLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG4gICAgaW1wb3J0czogW1JvdXRlck1vZHVsZSwgQ29tbW9uTW9kdWxlXSxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1oZWFkZXItY2xlYXItdjIuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsOiAnLi9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi5jb21wb25lbnQuc2NzcycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEJhYnlsb25IZWFkZXJDbGVhclYyQ29tcG9uZW50IHtcbiAgICBASW5wdXQoKSBoZWFkZXJGaXhlZDogYm9vbGVhbiA9IGZhbHNlO1xuXG4gICAgY29uc3RydWN0b3IoXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgZGlhbG9nOiBNYXREaWFsb2csXG4gICAgICAgIHByaXZhdGUgcmVhZG9ubHkgc2NyZWVuU2l6ZXI6IFNjcmVlblNpemVyU2VydmljZVxuICAgICkge31cblxuICAgIG9wZW5FbmdpbmVNb2RhbCgpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgZGlhbG9nUmVmID0gdGhpcy5kaWFsb2cub3BlbihCYWJ5bG9uRW5naW5lTW9kYWxDb21wb25lbnQsIHtcbiAgICAgICAgICAgIHdpZHRoOiAnMTAwdncnLFxuICAgICAgICAgICAgaGVpZ2h0OiAnMTAwdmgnLFxuICAgICAgICAgICAgbWF4V2lkdGg6ICcxMDB2dycsXG4gICAgICAgICAgICBoYXNCYWNrZHJvcDogdHJ1ZSxcbiAgICAgICAgfSk7XG5cbiAgICAgICAgY29uc3QgZXZlbnQgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XG5cbiAgICAgICAgZXZlbnQuc3Vic2NyaWJlKCgpID0+IHtcbiAgICAgICAgICAgIGRpYWxvZ1JlZi5jbG9zZSgpO1xuICAgICAgICB9KTtcblxuICAgICAgICBkaWFsb2dSZWYuY29tcG9uZW50SW5zdGFuY2UuY2xvc2UgPSBldmVudDtcbiAgICB9XG5cbiAgICBvcGVuTGFuZ3VhZ2VNb2RhbCgpOiB2b2lkIHtcbiAgICAgICAgY29uc3QgZGlhbG9nUmVmID0gdGhpcy5kaWFsb2cub3BlbihCYWJ5bG9uTGFuZ3VhZ2VNb2RhbENvbXBvbmVudCwge1xuICAgICAgICAgICAgd2lkdGg6ICcxMDB2dycsXG4gICAgICAgICAgICBoZWlnaHQ6ICcxMDB2aCcsXG4gICAgICAgICAgICBtYXhXaWR0aDogJzEwMHZ3JyxcbiAgICAgICAgICAgIGhhc0JhY2tkcm9wOiB0cnVlLFxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBvcGVuT2ZmZXIoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGRpYWxvZ1JlZiA9IHRoaXMuZGlhbG9nLm9wZW4oQmFieWxvbk9mZmVyUG9wdXBDb21wb25lbnQsIHtcbiAgICAgICAgICAgIHdpZHRoOiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzY1JScgOiAnOTV2dycsXG4gICAgICAgICAgICBoZWlnaHQ6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnODAlJyA6ICc4NXZoJyxcbiAgICAgICAgICAgIG1heEhlaWdodDogdGhpcy5zY3JlZW5TaXplci5taW5NZWRpdW1UYWJsZXQoKSA/ICc3MTRweCcgOiAnMTAwdmgnLFxuICAgICAgICAgICAgbWF4V2lkdGg6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnMTAwMHB4JyA6ICcxMDB2dycsXG4gICAgICAgICAgICBoYXNCYWNrZHJvcDogdHJ1ZSxcbiAgICAgICAgICAgIHBhbmVsQ2xhc3M6ICduZXdzbGV0dGVyJyxcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgb3Blbk5ld3NsZXR0ZXIoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGRpYWxvZ1JlZiA9IHRoaXMuZGlhbG9nLm9wZW4oQmFieWxvbk5ld3NsZXR0ZXJDb21wb25lbnQsIHtcbiAgICAgICAgICAgIHdpZHRoOiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzY1JScgOiAnOTV2dycsXG4gICAgICAgICAgICBoZWlnaHQ6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnODAlJyA6ICc4NXZoJyxcbiAgICAgICAgICAgIG1heEhlaWdodDogdGhpcy5zY3JlZW5TaXplci5taW5NZWRpdW1UYWJsZXQoKSA/ICc3MTRweCcgOiAnMTAwdmgnLFxuICAgICAgICAgICAgbWF4V2lkdGg6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnMTAwMHB4JyA6ICcxMDB2dycsXG4gICAgICAgICAgICBoYXNCYWNrZHJvcDogdHJ1ZSxcbiAgICAgICAgICAgIHBhbmVsQ2xhc3M6ICduZXdzbGV0dGVyJyxcbiAgICAgICAgfSk7XG4gICAgfVxufVxuIiwiPGhlYWRlciBjbGFzcz1cImhlYWRlclwiPlxuICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJfX2xvZ29cIj5cbiAgICAgICAgPGEgaHJlZj1cIi9ob21ldjRcIj5cbiAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIiBjbGFzcz1cImhlYWRlcl9fbG9nby0taW1nXCI+XG4gICAgICAgICAgICAgICAgPHVzZVxuICAgICAgICAgICAgICAgICAgICBocmVmPVwiL2Fzc2V0cy9iYWJ5bG9uL3N2Zy9ibGFuY28tbG9nby5zdmcjYmxhbmNvLWxvZ29cIlxuICAgICAgICAgICAgICAgID48L3VzZT5cbiAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICA8L2E+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImhlYWRlcl9fbmF2LS1kZXNrdG9wXCI+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LWxhbmcganMtYWN0aXZlLW1vZGFsXCJcbiAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cImxhbmd1YWdlXCJcbiAgICAgICAgICAgIHJvbGU9XCJidXR0b25cIlxuICAgICAgICA+XG4gICAgICAgICAgICA8c3ZnXG4gICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICBmb2N1c2FibGU9XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi0tYXJyb3dcIlxuICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgIDx1c2UgaHJlZj1cIi9hc3NldHMvYmFieWxvbi9zdmcvaWNvbi1hcnJvdy5zdmcjaWNvbi1hcnJvd1wiPjwvdXNlPlxuICAgICAgICAgICAgPC9zdmc+XG4gICAgICAgICAgICA8c3Bhbj5JZGlvbWFzPC9zcGFuPlxuICAgICAgICA8L3NwYW4+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LW1lbnUganMtYWN0aXZlLW1vZGFsXCJcbiAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cIm1lbnVcIlxuICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICA+TWVudTwvc3BhblxuICAgICAgICA+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LWJvb2sganMtYWN0aXZlLW1vZGFsXCJcbiAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cInJlc2VydmFyXCJcbiAgICAgICAgICAgIHJvbGU9XCJidXR0b25cIlxuICAgICAgICAgICAgPkJvb2s8L3NwYW5cbiAgICAgICAgPlxuICAgICAgICA8c3BhbiBjbGFzcz1cImhlYWRlcl9fbmF2LWNsdWJcIiByb2xlPVwiYnV0dG9uXCI+XG4gICAgICAgICAgICA8c3Bhbj5DbHViIEJsYW5jbzwvc3Bhbj5cbiAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICBhcmlhLWhpZGRlbj1cInRydWVcIlxuICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LS1hcnJvd1wiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPHVzZSBocmVmPVwiL2Fzc2V0cy9iYWJ5bG9uL3N2Zy9pY29uLWFycm93LnN2ZyNpY29uLWFycm93XCI+PC91c2U+XG4gICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJoZWFkZXJfX25hdi0tbW9iaWxlXCI+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LW1lbnUganMtYWN0aXZlLW1vZGFsXCJcbiAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cIm1lbnVcIlxuICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICA+TWVudTwvc3BhblxuICAgICAgICA+XG4gICAgICAgIDxzcGFuXG4gICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LWJvb2sganMtYWN0aXZlLW1vZGFsXCJcbiAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cInJlc2VydmFyXCJcbiAgICAgICAgICAgIHJvbGU9XCJidXR0b25cIlxuICAgICAgICAgICAgPkJvb2s8L3NwYW5cbiAgICAgICAgPlxuICAgICAgICA8dWwgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rc1wiPlxuICAgICAgICAgICAgPCEtLSBoZWFkZXJfX25hdi1saW5rcy0tY3VycmVudENvbG9yIC0tPlxuICAgICAgICAgICAgPGxpXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rcy0taXRlbSBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cImxhbmd1YWdlXCJcbiAgICAgICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8c3ZnXG4gICAgICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rcy0taWNvblwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICA8dXNlXG4gICAgICAgICAgICAgICAgICAgICAgICBocmVmPVwiL2Fzc2V0cy9iYWJ5bG9uL3N2Zy9pY29uLWdsb2JlLnN2ZyNpY29uLWdsb2JlXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgPC9saT5cbiAgICAgICAgICAgIDwhLS0gPGxpIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWl0ZW1cIj5cbiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIi9cIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIiBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBocmVmPVwiI2ljb24td2hhdHNhcHBcIj48L3VzZT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgICAgICAgICA8L2E+XG4gICAgICAgICAgICAgICAgPC9saT4gLS0+XG4gICAgICAgICAgICA8IS0tIDxsaSBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pdGVtICBqcy1hY3RpdmUtbW9kYWxcIiBkYXRhLW1vZGFsX25hbWU9XCJuZXdzbGV0dGVyXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIiBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8dXNlIGhyZWY9XCIjaWNvbi1lbnZlbG9wZVwiPjwvdXNlPlxuICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICAgICAgICA8L2xpPiAtLT5cbiAgICAgICAgICAgIDxsaSBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pdGVtXCI+XG4gICAgICAgICAgICAgICAgPGEgaHJlZj1cIi9cIj5cbiAgICAgICAgICAgICAgICAgICAgPHN2Z1xuICAgICAgICAgICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWljb25cIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8dXNlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgaHJlZj1cIi9hc3NldHMvYmFieWxvbi9zdmcvaWNvbi11c2VyLnN2ZyNpY29uLXVzZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICAgICAgICA8L2E+XG4gICAgICAgICAgICA8L2xpPlxuICAgICAgICAgICAgPGxpIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWl0ZW1cIj5cbiAgICAgICAgICAgICAgICA8YSBocmVmPVwidGVsOicrMzQgOTcxIDMyOCA0NTEnXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBmb2N1c2FibGU9XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCJcbiAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgPHVzZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tY2FsbC5zdmcjaWNvbi1jYWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICAgID48L3VzZT5cbiAgICAgICAgICAgICAgICAgICAgPC9zdmc+XG4gICAgICAgICAgICAgICAgPC9hPlxuICAgICAgICAgICAgPC9saT5cbiAgICAgICAgPC91bD5cbiAgICA8L2Rpdj5cbjwvaGVhZGVyPlxuIl19
|
|
76
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1oZWFkZXItY2xlYXItdjIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFieWxvbi9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taGVhZGVyLWNsZWFyLXYyL2JhYnlsb24taGVhZGVyLWNsZWFyLXYyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0gsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxZQUFZLEVBQ1osS0FBSyxHQUNSLE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUUvQyxPQUFPLEVBQUUsNkJBQTZCLEVBQUUsTUFBTSw4REFBOEQsQ0FBQztBQUM3RyxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSxrRUFBa0UsQ0FBQztBQUNuSCxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUMvRixPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxvREFBb0QsQ0FBQztBQUNoRyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxzREFBc0QsQ0FBQzs7OztBQVVsRyxNQUFNLE9BQU8sNkJBQTZCO0lBR3RDLFlBQ3FCLE1BQWlCLEVBQ2pCLFdBQStCO1FBRC9CLFdBQU0sR0FBTixNQUFNLENBQVc7UUFDakIsZ0JBQVcsR0FBWCxXQUFXLENBQW9CO1FBSjNDLGdCQUFXLEdBQVksS0FBSyxDQUFDO0lBS25DLENBQUM7SUFFSixlQUFlO1FBQ1gsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsNkJBQTZCLEVBQUU7WUFDOUQsS0FBSyxFQUFFLE9BQU87WUFDZCxNQUFNLEVBQUUsT0FBTztZQUNmLFFBQVEsRUFBRSxPQUFPO1lBQ2pCLFdBQVcsRUFBRSxJQUFJO1NBQ3BCLENBQUMsQ0FBQztRQUVILE1BQU0sS0FBSyxHQUFHLElBQUksWUFBWSxFQUFFLENBQUM7UUFFakMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxHQUFHLEVBQUU7WUFDakIsU0FBUyxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQ3RCLENBQUMsQ0FBQyxDQUFDO1FBRUgsU0FBUyxDQUFDLGlCQUFpQixDQUFDLEtBQUssR0FBRyxLQUFLLENBQUM7SUFDOUMsQ0FBQztJQUVELGlCQUFpQjtRQUNiLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLCtCQUErQixFQUFFO1lBQ2hFLEtBQUssRUFBRSxPQUFPO1lBQ2QsTUFBTSxFQUFFLE9BQU87WUFDZixRQUFRLEVBQUUsT0FBTztZQUNqQixXQUFXLEVBQUUsSUFBSTtTQUNwQixDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsYUFBYTtRQUNULE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHlCQUF5QixFQUFFO1lBQzFELEtBQUssRUFBRSxPQUFPO1lBQ2QsTUFBTSxFQUFFLE9BQU87WUFDZixRQUFRLEVBQUUsT0FBTztZQUNqQixXQUFXLEVBQUUsSUFBSTtTQUNwQixDQUFDLENBQUM7SUFDUCxDQUFDO0lBRUQsU0FBUztRQUNMLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLDBCQUEwQixFQUFFO1lBQzNELEtBQUssRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU07WUFDMUQsTUFBTSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUMsTUFBTTtZQUMzRCxTQUFTLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxPQUFPO1lBQ2pFLFFBQVEsRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLE9BQU87WUFDakUsV0FBVyxFQUFFLElBQUk7WUFDakIsVUFBVSxFQUFFLFlBQVk7U0FDM0IsQ0FBQyxDQUFDO0lBQ1AsQ0FBQztJQUVELGNBQWM7UUFDVixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQywwQkFBMEIsRUFBRTtZQUMzRCxLQUFLLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxNQUFNO1lBQzFELE1BQU0sRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLGVBQWUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLE1BQU07WUFDM0QsU0FBUyxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsZUFBZSxFQUFFLENBQUMsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsT0FBTztZQUNqRSxRQUFRLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxPQUFPO1lBQ2pFLFdBQVcsRUFBRSxJQUFJO1lBQ2pCLFVBQVUsRUFBRSxZQUFZO1NBQzNCLENBQUMsQ0FBQztJQUNQLENBQUM7K0dBL0RRLDZCQUE2QjttR0FBN0IsNkJBQTZCLCtIQ3hCMUMsODVJQTJIQSw4eWVEeEdjLFlBQVksOEJBQUUsWUFBWTs7NEZBSzNCLDZCQUE2QjtrQkFSekMsU0FBUzsrQkFDSSw2QkFBNkIsY0FDM0IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQyxtQkFHcEIsdUJBQXVCLENBQUMsTUFBTTsrR0FHdEMsV0FBVztzQkFBbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge1xuICAgIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICAgIENvbXBvbmVudCxcbiAgICBFdmVudEVtaXR0ZXIsXG4gICAgSW5wdXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0RGlhbG9nIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGlhbG9nJztcbmltcG9ydCB7IFJvdXRlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBTY3JlZW5TaXplclNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBCYWJ5bG9uRW5naW5lTW9kYWxWMkNvbXBvbmVudCB9IGZyb20gJy4uL2JhYnlsb24tZW5naW5lLW1vZGFsLXYyL2JhYnlsb24tZW5naW5lLW1vZGFsLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCYWJ5bG9uTGFuZ3VhZ2VNb2RhbFYyQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFieWxvbi1sYW5ndWFnZS1tb2RhbC12Mi9iYWJ5bG9uLWxhbmd1YWdlLW1vZGFsLXYyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCYWJ5bG9uTWVudU1vZGFsQ29tcG9uZW50IH0gZnJvbSAnLi4vYmFieWxvbi1tZW51LW1vZGFsL2JhYnlsb24tbWVudS1tb2RhbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQmFieWxvbk5ld3NsZXR0ZXJDb21wb25lbnQgfSBmcm9tICcuLi9iYWJ5bG9uLW5ld3NsZXR0ZXIvYmFieWxvbi1uZXdzbGV0dGVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBCYWJ5bG9uT2ZmZXJQb3B1cENvbXBvbmVudCB9IGZyb20gJy4uL2JhYnlsb24tb2ZmZXItcG9wdXAvYmFieWxvbi1vZmZlci1wb3B1cC5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2xpYi1iYWJ5bG9uLWhlYWRlci1jbGVhci12MicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbUm91dGVyTW9kdWxlLCBDb21tb25Nb2R1bGVdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9iYWJ5bG9uLWhlYWRlci1jbGVhci12Mi5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmw6ICcuL2JhYnlsb24taGVhZGVyLWNsZWFyLXYyLmNvbXBvbmVudC5zY3NzJyxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgQmFieWxvbkhlYWRlckNsZWFyVjJDb21wb25lbnQge1xuICAgIEBJbnB1dCgpIGhlYWRlckZpeGVkOiBib29sZWFuID0gZmFsc2U7XG5cbiAgICBjb25zdHJ1Y3RvcihcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBkaWFsb2c6IE1hdERpYWxvZyxcbiAgICAgICAgcHJpdmF0ZSByZWFkb25seSBzY3JlZW5TaXplcjogU2NyZWVuU2l6ZXJTZXJ2aWNlXG4gICAgKSB7fVxuXG4gICAgb3BlbkVuZ2luZU1vZGFsKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZy5vcGVuKEJhYnlsb25FbmdpbmVNb2RhbFYyQ29tcG9uZW50LCB7XG4gICAgICAgICAgICB3aWR0aDogJzEwMHZ3JyxcbiAgICAgICAgICAgIGhlaWdodDogJzEwMHZoJyxcbiAgICAgICAgICAgIG1heFdpZHRoOiAnMTAwdncnLFxuICAgICAgICAgICAgaGFzQmFja2Ryb3A6IHRydWUsXG4gICAgICAgIH0pO1xuXG4gICAgICAgIGNvbnN0IGV2ZW50ID0gbmV3IEV2ZW50RW1pdHRlcigpO1xuXG4gICAgICAgIGV2ZW50LnN1YnNjcmliZSgoKSA9PiB7XG4gICAgICAgICAgICBkaWFsb2dSZWYuY2xvc2UoKTtcbiAgICAgICAgfSk7XG5cbiAgICAgICAgZGlhbG9nUmVmLmNvbXBvbmVudEluc3RhbmNlLmNsb3NlID0gZXZlbnQ7XG4gICAgfVxuXG4gICAgb3Blbkxhbmd1YWdlTW9kYWwoKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGRpYWxvZ1JlZiA9IHRoaXMuZGlhbG9nLm9wZW4oQmFieWxvbkxhbmd1YWdlTW9kYWxWMkNvbXBvbmVudCwge1xuICAgICAgICAgICAgd2lkdGg6ICcxMDB2dycsXG4gICAgICAgICAgICBoZWlnaHQ6ICcxMDB2aCcsXG4gICAgICAgICAgICBtYXhXaWR0aDogJzEwMHZ3JyxcbiAgICAgICAgICAgIGhhc0JhY2tkcm9wOiB0cnVlLFxuICAgICAgICB9KTtcbiAgICB9XG5cbiAgICBvcGVuTWVudU1vZGFsKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZy5vcGVuKEJhYnlsb25NZW51TW9kYWxDb21wb25lbnQsIHtcbiAgICAgICAgICAgIHdpZHRoOiAnMTAwdncnLFxuICAgICAgICAgICAgaGVpZ2h0OiAnMTAwdmgnLFxuICAgICAgICAgICAgbWF4V2lkdGg6ICcxMDB2dycsXG4gICAgICAgICAgICBoYXNCYWNrZHJvcDogdHJ1ZSxcbiAgICAgICAgfSk7XG4gICAgfVxuXG4gICAgb3Blbk9mZmVyKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZy5vcGVuKEJhYnlsb25PZmZlclBvcHVwQ29tcG9uZW50LCB7XG4gICAgICAgICAgICB3aWR0aDogdGhpcy5zY3JlZW5TaXplci5taW5NZWRpdW1UYWJsZXQoKSA/ICc2NSUnIDogJzk1dncnLFxuICAgICAgICAgICAgaGVpZ2h0OiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzgwJScgOiAnODV2aCcsXG4gICAgICAgICAgICBtYXhIZWlnaHQ6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnNzE0cHgnIDogJzEwMHZoJyxcbiAgICAgICAgICAgIG1heFdpZHRoOiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzEwMDBweCcgOiAnMTAwdncnLFxuICAgICAgICAgICAgaGFzQmFja2Ryb3A6IHRydWUsXG4gICAgICAgICAgICBwYW5lbENsYXNzOiAnbmV3c2xldHRlcicsXG4gICAgICAgIH0pO1xuICAgIH1cblxuICAgIG9wZW5OZXdzbGV0dGVyKCk6IHZvaWQge1xuICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZy5vcGVuKEJhYnlsb25OZXdzbGV0dGVyQ29tcG9uZW50LCB7XG4gICAgICAgICAgICB3aWR0aDogdGhpcy5zY3JlZW5TaXplci5taW5NZWRpdW1UYWJsZXQoKSA/ICc2NSUnIDogJzk1dncnLFxuICAgICAgICAgICAgaGVpZ2h0OiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzgwJScgOiAnODV2aCcsXG4gICAgICAgICAgICBtYXhIZWlnaHQ6IHRoaXMuc2NyZWVuU2l6ZXIubWluTWVkaXVtVGFibGV0KCkgPyAnNzE0cHgnIDogJzEwMHZoJyxcbiAgICAgICAgICAgIG1heFdpZHRoOiB0aGlzLnNjcmVlblNpemVyLm1pbk1lZGl1bVRhYmxldCgpID8gJzEwMDBweCcgOiAnMTAwdncnLFxuICAgICAgICAgICAgaGFzQmFja2Ryb3A6IHRydWUsXG4gICAgICAgICAgICBwYW5lbENsYXNzOiAnbmV3c2xldHRlcicsXG4gICAgICAgIH0pO1xuICAgIH1cbn1cbiIsIjxoZWFkZXIgY2xhc3M9XCJoZWFkZXJcIj5cbiAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyX19sb2dvXCI+XG4gICAgICAgIDxhIGhyZWY9XCIvaG9tZVwiPlxuICAgICAgICAgICAgPHN2ZyBhcmlhLWhpZGRlbj1cInRydWVcIiBmb2N1c2FibGU9XCJmYWxzZVwiIGNsYXNzPVwiaGVhZGVyX19sb2dvLS1pbWdcIj5cbiAgICAgICAgICAgICAgICA8dXNlXG4gICAgICAgICAgICAgICAgICAgIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2JsYW5jby1sb2dvLnN2ZyNibGFuY28tbG9nb1wiXG4gICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgPC9zdmc+XG4gICAgICAgIDwvYT5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwiaGVhZGVyX19uYXYtLWRlc2t0b3BcIj5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtbGFuZyBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgZGF0YS1tb2RhbF9uYW1lPVwibGFuZ3VhZ2VcIlxuICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAoY2xpY2spPVwib3Blbkxhbmd1YWdlTW9kYWwoKVwiXG4gICAgICAgID5cbiAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICBhcmlhLWhpZGRlbj1cInRydWVcIlxuICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LS1hcnJvd1wiXG4gICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgPHVzZSBocmVmPVwiL2Fzc2V0cy9iYWJ5bG9uL3N2Zy9pY29uLWFycm93LnN2ZyNpY29uLWFycm93XCI+PC91c2U+XG4gICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICAgIDxzcGFuPklkaW9tYXM8L3NwYW4+XG4gICAgICAgIDwvc3Bhbj5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtbWVudSBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgZGF0YS1tb2RhbF9uYW1lPVwibWVudVwiXG4gICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgIChjbGljayk9XCJvcGVuTWVudU1vZGFsKClcIlxuICAgICAgICAgICAgPk1lbnU8L3NwYW5cbiAgICAgICAgPlxuICAgICAgICA8c3BhblxuICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi1ib29rIGpzLWFjdGl2ZS1tb2RhbFwiXG4gICAgICAgICAgICBkYXRhLW1vZGFsX25hbWU9XCJyZXNlcnZhclwiXG4gICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgIChjbGljayk9XCJvcGVuRW5naW5lTW9kYWwoKVwiXG4gICAgICAgICAgICA+Qm9vazwvc3BhblxuICAgICAgICA+XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiaGVhZGVyX19uYXYtY2x1YlwiIHJvbGU9XCJidXR0b25cIj5cbiAgICAgICAgICAgIDxzcGFuPkNsdWIgQmxhbmNvPC9zcGFuPlxuICAgICAgICAgICAgPHN2Z1xuICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgZm9jdXNhYmxlPVwiZmFsc2VcIlxuICAgICAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtLWFycm93XCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8dXNlIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tYXJyb3cuc3ZnI2ljb24tYXJyb3dcIj48L3VzZT5cbiAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICA8L3NwYW4+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cImhlYWRlcl9fbmF2LS1tb2JpbGVcIj5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtbWVudSBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgZGF0YS1tb2RhbF9uYW1lPVwibWVudVwiXG4gICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgID5NZW51PC9zcGFuXG4gICAgICAgID5cbiAgICAgICAgPHNwYW5cbiAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtYm9vayBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgZGF0YS1tb2RhbF9uYW1lPVwicmVzZXJ2YXJcIlxuICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAoY2xpY2spPVwib3BlbkVuZ2luZU1vZGFsKClcIlxuICAgICAgICAgICAgPkJvb2s8L3NwYW5cbiAgICAgICAgPlxuICAgICAgICA8dWwgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rc1wiPlxuICAgICAgICAgICAgPCEtLSBoZWFkZXJfX25hdi1saW5rcy0tY3VycmVudENvbG9yIC0tPlxuICAgICAgICAgICAgPGxpXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rcy0taXRlbSBqcy1hY3RpdmUtbW9kYWxcIlxuICAgICAgICAgICAgICAgIGRhdGEtbW9kYWxfbmFtZT1cImxhbmd1YWdlXCJcbiAgICAgICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICA8c3ZnXG4gICAgICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJoZWFkZXJfX25hdi1saW5rcy0taWNvblwiXG4gICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICA8dXNlXG4gICAgICAgICAgICAgICAgICAgICAgICBocmVmPVwiL2Fzc2V0cy9iYWJ5bG9uL3N2Zy9pY29uLWdsb2JlLnN2ZyNpY29uLWdsb2JlXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgPC9saT5cbiAgICAgICAgICAgIDwhLS0gPGxpIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWl0ZW1cIj5cbiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIi9cIj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIiBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVzZSBocmVmPVwiI2ljb24td2hhdHNhcHBcIj48L3VzZT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgICAgICAgICA8L2E+XG4gICAgICAgICAgICAgICAgPC9saT4gLS0+XG4gICAgICAgICAgICA8IS0tIDxsaSBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pdGVtICBqcy1hY3RpdmUtbW9kYWxcIiBkYXRhLW1vZGFsX25hbWU9XCJuZXdzbGV0dGVyXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIiBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8dXNlIGhyZWY9XCIjaWNvbi1lbnZlbG9wZVwiPjwvdXNlPlxuICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICAgICAgICA8L2xpPiAtLT5cbiAgICAgICAgICAgIDxsaSBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pdGVtXCI+XG4gICAgICAgICAgICAgICAgPGEgaHJlZj1cIi9cIj5cbiAgICAgICAgICAgICAgICAgICAgPHN2Z1xuICAgICAgICAgICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGZvY3VzYWJsZT1cImZhbHNlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWljb25cIlxuICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICA8dXNlXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgaHJlZj1cIi9hc3NldHMvYmFieWxvbi9zdmcvaWNvbi11c2VyLnN2ZyNpY29uLXVzZXJcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cbiAgICAgICAgICAgICAgICA8L2E+XG4gICAgICAgICAgICA8L2xpPlxuICAgICAgICAgICAgPGxpIGNsYXNzPVwiaGVhZGVyX19uYXYtbGlua3MtLWl0ZW1cIj5cbiAgICAgICAgICAgICAgICA8YSBocmVmPVwidGVsOicrMzQgOTcxIDMyOCA0NTEnXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICAgICAgICAgIGFyaWEtaGlkZGVuPVwidHJ1ZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBmb2N1c2FibGU9XCJmYWxzZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImhlYWRlcl9fbmF2LWxpbmtzLS1pY29uXCJcbiAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgPHVzZVxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tY2FsbC5zdmcjaWNvbi1jYWxsXCJcbiAgICAgICAgICAgICAgICAgICAgICAgID48L3VzZT5cbiAgICAgICAgICAgICAgICAgICAgPC9zdmc+XG4gICAgICAgICAgICAgICAgPC9hPlxuICAgICAgICAgICAgPC9saT5cbiAgICAgICAgPC91bD5cbiAgICA8L2Rpdj5cbjwvaGVhZGVyPlxuIl19
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class BabylonInfoBigV3Component {
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonInfoBigV3Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonInfoBigV3Component, isStandalone: true, selector: "lib-babylon-info-big-v3", ngImport: i0, template: "<section class=\"info-img-big-v3\">\n <figure>\n <img src=\"/assets/babylon/images/img-85.webp\" />\n </figure>\n <div class=\"info-img-big-v3__content\">\n <div class=\"container\">\n <div class=\"info-img-big-v3__content--inner\">\n <h2>formentera</h2>\n <p>\u201CUna isla de ensue\u00F1o en el Mediterr\u00E1neo\u201D</p>\n </div>\n </div>\n </div>\n</section>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.info-img-big-v3{position:relative;display:flex;flex-direction:column}.info-img-big-v3 figure{aspect-ratio:375/260}@media (min-width: 1024px){.info-img-big-v3 figure{aspect-ratio:1024/532}}.info-img-big-v3__content{--inline-spacing-left: 3rem;--inline-spacing-right: 3rem;padding-block:4rem 5.4rem}@media (min-width: 540px){.info-img-big-v3__content{--inline-spacing-left: 7.4rem;--inline-spacing-right: 7.4rem;padding-bottom:6.4rem}}@media (min-width: 768px){.info-img-big-v3__content{--inline-spacing-left: 8.5rem;--inline-spacing-right: 8.5rem;padding-block:5rem 5.4rem}}@media (min-width: 1024px){.info-img-big-v3__content{--inline-spacing-left: 10.7rem;--inline-spacing-right: 10.7rem}}@media (min-width: 1280px){.info-img-big-v3__content{--inline-spacing-left: 11rem;--inline-spacing-right: 11rem;min-height:37rem;position:absolute;top:0;left:0;width:100%;background:linear-gradient(180deg,#1e1e1e33,#1e1e1e00)}}@media (min-width: 1366px){.info-img-big-v3__content{--inline-spacing-left: 12.8rem;--inline-spacing-right: 12.8rem}}@media (min-width: 1680px){.info-img-big-v3__content{--inline-spacing-left: 13rem;--inline-spacing-right: 13rem;padding-top:8rem}}@media (min-width: 1800px){.info-img-big-v3__content{--inline-spacing-left: 18rem;--inline-spacing-right: 18rem}}.info-img-big-v3__content--inner{display:flex;flex-direction:column;gap:1.4rem}@media (min-width: 1024px){.info-img-big-v3__content--inner{gap:1.5rem}}.info-img-big-v3__content h2{color:#4a4a49;text-transform:uppercase;font-size:1.8rem;line-height:1;letter-spacing:.072rem}@media (min-width: 768px){.info-img-big-v3__content h2{font-size:1.6rem;line-height:1;letter-spacing:.16rem}}@media (min-width: 1024px){.info-img-big-v3__content h2{color:#fff}}.info-img-big-v3__content p{color:#4a4a49cc;font-size:1.5rem;line-height:1.3333333333;letter-spacing:.03rem}@media (min-width: 1024px){.info-img-big-v3__content p{color:#fff}}\n"] }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonInfoBigV3Component, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ selector: 'lib-babylon-info-big-v3', standalone: true, imports: [], template: "<section class=\"info-img-big-v3\">\n <figure>\n <img src=\"/assets/babylon/images/img-85.webp\" />\n </figure>\n <div class=\"info-img-big-v3__content\">\n <div class=\"container\">\n <div class=\"info-img-big-v3__content--inner\">\n <h2>formentera</h2>\n <p>\u201CUna isla de ensue\u00F1o en el Mediterr\u00E1neo\u201D</p>\n </div>\n </div>\n </div>\n</section>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.info-img-big-v3{position:relative;display:flex;flex-direction:column}.info-img-big-v3 figure{aspect-ratio:375/260}@media (min-width: 1024px){.info-img-big-v3 figure{aspect-ratio:1024/532}}.info-img-big-v3__content{--inline-spacing-left: 3rem;--inline-spacing-right: 3rem;padding-block:4rem 5.4rem}@media (min-width: 540px){.info-img-big-v3__content{--inline-spacing-left: 7.4rem;--inline-spacing-right: 7.4rem;padding-bottom:6.4rem}}@media (min-width: 768px){.info-img-big-v3__content{--inline-spacing-left: 8.5rem;--inline-spacing-right: 8.5rem;padding-block:5rem 5.4rem}}@media (min-width: 1024px){.info-img-big-v3__content{--inline-spacing-left: 10.7rem;--inline-spacing-right: 10.7rem}}@media (min-width: 1280px){.info-img-big-v3__content{--inline-spacing-left: 11rem;--inline-spacing-right: 11rem;min-height:37rem;position:absolute;top:0;left:0;width:100%;background:linear-gradient(180deg,#1e1e1e33,#1e1e1e00)}}@media (min-width: 1366px){.info-img-big-v3__content{--inline-spacing-left: 12.8rem;--inline-spacing-right: 12.8rem}}@media (min-width: 1680px){.info-img-big-v3__content{--inline-spacing-left: 13rem;--inline-spacing-right: 13rem;padding-top:8rem}}@media (min-width: 1800px){.info-img-big-v3__content{--inline-spacing-left: 18rem;--inline-spacing-right: 18rem}}.info-img-big-v3__content--inner{display:flex;flex-direction:column;gap:1.4rem}@media (min-width: 1024px){.info-img-big-v3__content--inner{gap:1.5rem}}.info-img-big-v3__content h2{color:#4a4a49;text-transform:uppercase;font-size:1.8rem;line-height:1;letter-spacing:.072rem}@media (min-width: 768px){.info-img-big-v3__content h2{font-size:1.6rem;line-height:1;letter-spacing:.16rem}}@media (min-width: 1024px){.info-img-big-v3__content h2{color:#fff}}.info-img-big-v3__content p{color:#4a4a49cc;font-size:1.5rem;line-height:1.3333333333;letter-spacing:.03rem}@media (min-width: 1024px){.info-img-big-v3__content p{color:#fff}}\n"] }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1pbmZvLWJpZy12My5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taW5mby1iaWctdjMvYmFieWxvbi1pbmZvLWJpZy12My5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taW5mby1iaWctdjMvYmFieWxvbi1pbmZvLWJpZy12My5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVMxQyxNQUFNLE9BQU8seUJBQXlCOytHQUF6Qix5QkFBeUI7bUdBQXpCLHlCQUF5QixtRkNUdEMsb2NBYUE7OzRGREphLHlCQUF5QjtrQkFQckMsU0FBUzsrQkFDSSx5QkFBeUIsY0FDdkIsSUFBSSxXQUNQLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1pbmZvLWJpZy12MycsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbXSxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1pbmZvLWJpZy12My5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmw6ICcuL2JhYnlsb24taW5mby1iaWctdjMuY29tcG9uZW50LnNjc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBCYWJ5bG9uSW5mb0JpZ1YzQ29tcG9uZW50IHt9XG4iLCI8c2VjdGlvbiBjbGFzcz1cImluZm8taW1nLWJpZy12M1wiPlxuICAgIDxmaWd1cmU+XG4gICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ltYWdlcy9pbWctODUud2VicFwiIC8+XG4gICAgPC9maWd1cmU+XG4gICAgPGRpdiBjbGFzcz1cImluZm8taW1nLWJpZy12M19fY29udGVudFwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby1pbWctYmlnLXYzX19jb250ZW50LS1pbm5lclwiPlxuICAgICAgICAgICAgICAgIDxoMj5mb3JtZW50ZXJhPC9oMj5cbiAgICAgICAgICAgICAgICA8cD7igJxVbmEgaXNsYSBkZSBlbnN1ZcOxbyBlbiBlbCBNZWRpdGVycsOhbmVv4oCdPC9wPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuPC9zZWN0aW9uPlxuIl19
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class BabylonInfoImgV2Component {
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonInfoImgV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonInfoImgV2Component, isStandalone: true, selector: "lib-babylon-info-img-v2", ngImport: i0, template: "<section class=\"info-img-v2-ficha__module\">\n <div class=\"container\">\n <div class=\"info-img-v2-ficha__module-inner\">\n <div class=\"info-img-v2-ficha__module-image\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"info-img-v2-ficha__module-graphic--top\"\n >\n <use\n href=\"/assets/babylon/svg/icon-graphic.svg#icon-graphic\"\n ></use>\n </svg>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"info-img-v2-ficha__module-graphic--bottom\"\n >\n <use\n href=\"/assets/babylon/svg/icon-graphic.svg#icon-graphic\"\n ></use>\n </svg>\n <figure>\n <img src=\"/assets/babylon/images/img-18.webp\" />\n </figure>\n </div>\n <div class=\"info-img-v2-ficha__module-content\">\n <div class=\"info-img-v2-ficha__module-content--inner\">\n <div class=\"info-img-v2-ficha__module-heading\">\n <h2>Entra y benef\u00EDciate!</h2>\n <p>\n Descubre nuestros tres niveles, Silver, Gold y\n Platinum. Reg\u00EDstrate y obtendr\u00E1s las primeras\n ventajas exclusivas para tu pr\u00F3xima estancia, cuanto\n m\u00E1s sume tu estancia, m\u00E1s cerca estar\u00E1s del\n siguiente nivel. Desde tu perfil podr\u00E1s reservar de\n manera m\u00E1s r\u00E1pida y personalizada, con el mejor\n precio garantizado.\n </p>\n </div>\n <div class=\"info-img-v2-ficha__module-text\">\n <div class=\"info-img-v2-ficha__module-text--box\">\n <h3>Desde tu perfil</h3>\n <p>\n Podr\u00E1s reservar de manera m\u00E1s r\u00E1pida y\n personalizada, con el mejor precio garantizado.\n </p>\n </div>\n <div class=\"btn__group\">\n <button class=\"btn btn__primary\">\n <span>Reg\u00EDstrate</span>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.info-img-v2-ficha__module{padding-block:5rem}@media (min-width: 540px){.info-img-v2-ficha__module{padding-block:6rem}}@media (min-width: 768px){.info-img-v2-ficha__module{padding-block:8rem}}@media (min-width: 1024px){.info-img-v2-ficha__module{padding-block:7rem}}@media (min-width: 1280px){.info-img-v2-ficha__module{padding-block:8rem}}@media (min-width: 1366px){.info-img-v2-ficha__module{padding-block:9rem}}@media (min-width: 1680px){.info-img-v2-ficha__module{padding-block:10rem}}.info-img-v2-ficha__module-inner{width:100%;margin-inline:auto;display:flex;flex-direction:column;align-items:center;gap:3rem}@media (min-width: 540px){.info-img-v2-ficha__module-inner{gap:4rem}}@media (min-width: 768px){.info-img-v2-ficha__module-inner{gap:5rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-inner{flex-direction:row;align-items:flex-start;gap:0}}.info-img-v2-ficha__module-image{width:29.5rem;flex:0 0 auto;position:relative}@media (min-width: 540px){.info-img-v2-ficha__module-image{width:42.029rem}}@media (min-width: 768px){.info-img-v2-ficha__module-image{width:58.929rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-image{overflow:hidden;width:49.8rem;position:sticky;top:8rem}}@media (min-width: 1280px) and (min-width: 1680px){.info-img-v2-ficha__module-image{top:9rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-image{width:52.1rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-image{width:64.7rem}}@media (min-width: 1800px){.info-img-v2-ficha__module-image{width:65.6rem}}.info-img-v2-ficha__module-image figure{aspect-ratio:295/266}.info-img-v2-ficha__module-graphic--top,.info-img-v2-ficha__module-graphic--bottom{position:absolute;left:50%;top:0;aspect-ratio:2/1;width:10rem;color:#fff;display:none;z-index:1}@media (min-width: 540px){.info-img-v2-ficha__module-graphic--top,.info-img-v2-ficha__module-graphic--bottom{display:block}}.info-img-v2-ficha__module-graphic--top{transform:translate(-50%)}.info-img-v2-ficha__module-graphic--bottom{top:unset;bottom:0;transform:scaleY(-1) translate(-50%)}.info-img-v2-ficha__module-content{flex:1 1 auto;display:flex;flex-direction:column;align-items:center}@media (min-width: 1280px) and (max-width: 1679.98px){.info-img-v2-ficha__module-content{align-items:flex-end}}.info-img-v2-ficha__module-content--inner{max-width:29.5rem;width:100%;display:flex;flex-direction:column}@media (min-width: 540px){.info-img-v2-ficha__module-content--inner{max-width:42.029rem}}@media (min-width: 768px){.info-img-v2-ficha__module-content--inner{max-width:58.929rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-content--inner{max-width:50rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-content--inner{max-width:52.4rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-content--inner{max-width:54.2rem}}.info-img-v2-ficha__module-heading{display:flex;flex-direction:column;gap:2rem;padding-bottom:3rem;position:relative;border-bottom:1px solid #dcdcdc}@media (min-width: 540px){.info-img-v2-ficha__module-heading{padding-bottom:4rem}}@media (min-width: 768px){.info-img-v2-ficha__module-heading{padding-bottom:5rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-heading{padding-top:9.6rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-heading{padding-top:9.8rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-heading{padding-top:15.5rem}}@media (min-width: 1800px){.info-img-v2-ficha__module-heading{padding-top:15.9rem}}.info-img-v2-ficha__module-heading h2{font-size:2.8rem;line-height:1}@media (min-width: 540px){.info-img-v2-ficha__module-heading h2{font-size:3.4rem;line-height:1}}@media (min-width: 768px){.info-img-v2-ficha__module-heading h2{font-size:4.2rem;line-height:1.0952380952}}@media (min-width: 1366px){.info-img-v2-ficha__module-heading h2{font-size:5rem;line-height:1.08}}.info-img-v2-ficha__module-heading p{color:#4a4a49cc;font-size:1.6rem;line-height:1.5}@media (min-width: 540px){.info-img-v2-ficha__module-heading p{font-size:1.8rem;line-height:1.5555555556}}@media (min-width: 768px){.info-img-v2-ficha__module-heading p{font-size:2rem;line-height:1.6;letter-spacing:.04rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-heading p{font-size:2rem;line-height:1.7}}.info-img-v2-ficha__module-text--box{display:flex;flex-direction:column;gap:2rem;padding-block:3rem;color:#4a4a49cc}@media (min-width: 540px){.info-img-v2-ficha__module-text--box{padding-block:4rem;gap:2.9rem}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box{padding-block:5rem;gap:3rem}}@media (min-width: 1280px) and (max-width: 1365.98px){.info-img-v2-ficha__module-text--box{padding-bottom:5.5rem}}.info-img-v2-ficha__module-text--box h3{color:#4a4a49cc;text-transform:uppercase;font-size:1.6rem;line-height:1;letter-spacing:.064rem}@media (min-width: 540px){.info-img-v2-ficha__module-text--box h3{font-size:1.7rem;line-height:1;letter-spacing:.17rem}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box h3{font-size:2rem;line-height:1}}@media (min-width: 1280px){.info-img-v2-ficha__module-text--box h3{letter-spacing:.3rem}}.info-img-v2-ficha__module-text--box p{font-size:1.6rem;line-height:1.5}@media (min-width: 540px){.info-img-v2-ficha__module-text--box p{font-size:1.8rem;line-height:1.5555555556}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box p{font-size:2rem;line-height:1.6;letter-spacing:.04rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-text--box p{font-size:2rem;line-height:1.7}}.info-img-v2-ficha__module-text .btn__group{justify-content:center}.info-img-v2-ficha__module--right .info-img-v2-ficha__module-image{order:2}\n"] }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonInfoImgV2Component, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{ selector: 'lib-babylon-info-img-v2', standalone: true, imports: [], template: "<section class=\"info-img-v2-ficha__module\">\n <div class=\"container\">\n <div class=\"info-img-v2-ficha__module-inner\">\n <div class=\"info-img-v2-ficha__module-image\">\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"info-img-v2-ficha__module-graphic--top\"\n >\n <use\n href=\"/assets/babylon/svg/icon-graphic.svg#icon-graphic\"\n ></use>\n </svg>\n <svg\n aria-hidden=\"true\"\n focusable=\"false\"\n class=\"info-img-v2-ficha__module-graphic--bottom\"\n >\n <use\n href=\"/assets/babylon/svg/icon-graphic.svg#icon-graphic\"\n ></use>\n </svg>\n <figure>\n <img src=\"/assets/babylon/images/img-18.webp\" />\n </figure>\n </div>\n <div class=\"info-img-v2-ficha__module-content\">\n <div class=\"info-img-v2-ficha__module-content--inner\">\n <div class=\"info-img-v2-ficha__module-heading\">\n <h2>Entra y benef\u00EDciate!</h2>\n <p>\n Descubre nuestros tres niveles, Silver, Gold y\n Platinum. Reg\u00EDstrate y obtendr\u00E1s las primeras\n ventajas exclusivas para tu pr\u00F3xima estancia, cuanto\n m\u00E1s sume tu estancia, m\u00E1s cerca estar\u00E1s del\n siguiente nivel. Desde tu perfil podr\u00E1s reservar de\n manera m\u00E1s r\u00E1pida y personalizada, con el mejor\n precio garantizado.\n </p>\n </div>\n <div class=\"info-img-v2-ficha__module-text\">\n <div class=\"info-img-v2-ficha__module-text--box\">\n <h3>Desde tu perfil</h3>\n <p>\n Podr\u00E1s reservar de manera m\u00E1s r\u00E1pida y\n personalizada, con el mejor precio garantizado.\n </p>\n </div>\n <div class=\"btn__group\">\n <button class=\"btn btn__primary\">\n <span>Reg\u00EDstrate</span>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.info-img-v2-ficha__module{padding-block:5rem}@media (min-width: 540px){.info-img-v2-ficha__module{padding-block:6rem}}@media (min-width: 768px){.info-img-v2-ficha__module{padding-block:8rem}}@media (min-width: 1024px){.info-img-v2-ficha__module{padding-block:7rem}}@media (min-width: 1280px){.info-img-v2-ficha__module{padding-block:8rem}}@media (min-width: 1366px){.info-img-v2-ficha__module{padding-block:9rem}}@media (min-width: 1680px){.info-img-v2-ficha__module{padding-block:10rem}}.info-img-v2-ficha__module-inner{width:100%;margin-inline:auto;display:flex;flex-direction:column;align-items:center;gap:3rem}@media (min-width: 540px){.info-img-v2-ficha__module-inner{gap:4rem}}@media (min-width: 768px){.info-img-v2-ficha__module-inner{gap:5rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-inner{flex-direction:row;align-items:flex-start;gap:0}}.info-img-v2-ficha__module-image{width:29.5rem;flex:0 0 auto;position:relative}@media (min-width: 540px){.info-img-v2-ficha__module-image{width:42.029rem}}@media (min-width: 768px){.info-img-v2-ficha__module-image{width:58.929rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-image{overflow:hidden;width:49.8rem;position:sticky;top:8rem}}@media (min-width: 1280px) and (min-width: 1680px){.info-img-v2-ficha__module-image{top:9rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-image{width:52.1rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-image{width:64.7rem}}@media (min-width: 1800px){.info-img-v2-ficha__module-image{width:65.6rem}}.info-img-v2-ficha__module-image figure{aspect-ratio:295/266}.info-img-v2-ficha__module-graphic--top,.info-img-v2-ficha__module-graphic--bottom{position:absolute;left:50%;top:0;aspect-ratio:2/1;width:10rem;color:#fff;display:none;z-index:1}@media (min-width: 540px){.info-img-v2-ficha__module-graphic--top,.info-img-v2-ficha__module-graphic--bottom{display:block}}.info-img-v2-ficha__module-graphic--top{transform:translate(-50%)}.info-img-v2-ficha__module-graphic--bottom{top:unset;bottom:0;transform:scaleY(-1) translate(-50%)}.info-img-v2-ficha__module-content{flex:1 1 auto;display:flex;flex-direction:column;align-items:center}@media (min-width: 1280px) and (max-width: 1679.98px){.info-img-v2-ficha__module-content{align-items:flex-end}}.info-img-v2-ficha__module-content--inner{max-width:29.5rem;width:100%;display:flex;flex-direction:column}@media (min-width: 540px){.info-img-v2-ficha__module-content--inner{max-width:42.029rem}}@media (min-width: 768px){.info-img-v2-ficha__module-content--inner{max-width:58.929rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-content--inner{max-width:50rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-content--inner{max-width:52.4rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-content--inner{max-width:54.2rem}}.info-img-v2-ficha__module-heading{display:flex;flex-direction:column;gap:2rem;padding-bottom:3rem;position:relative;border-bottom:1px solid #dcdcdc}@media (min-width: 540px){.info-img-v2-ficha__module-heading{padding-bottom:4rem}}@media (min-width: 768px){.info-img-v2-ficha__module-heading{padding-bottom:5rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-heading{padding-top:9.6rem}}@media (min-width: 1366px){.info-img-v2-ficha__module-heading{padding-top:9.8rem}}@media (min-width: 1680px){.info-img-v2-ficha__module-heading{padding-top:15.5rem}}@media (min-width: 1800px){.info-img-v2-ficha__module-heading{padding-top:15.9rem}}.info-img-v2-ficha__module-heading h2{font-size:2.8rem;line-height:1}@media (min-width: 540px){.info-img-v2-ficha__module-heading h2{font-size:3.4rem;line-height:1}}@media (min-width: 768px){.info-img-v2-ficha__module-heading h2{font-size:4.2rem;line-height:1.0952380952}}@media (min-width: 1366px){.info-img-v2-ficha__module-heading h2{font-size:5rem;line-height:1.08}}.info-img-v2-ficha__module-heading p{color:#4a4a49cc;font-size:1.6rem;line-height:1.5}@media (min-width: 540px){.info-img-v2-ficha__module-heading p{font-size:1.8rem;line-height:1.5555555556}}@media (min-width: 768px){.info-img-v2-ficha__module-heading p{font-size:2rem;line-height:1.6;letter-spacing:.04rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-heading p{font-size:2rem;line-height:1.7}}.info-img-v2-ficha__module-text--box{display:flex;flex-direction:column;gap:2rem;padding-block:3rem;color:#4a4a49cc}@media (min-width: 540px){.info-img-v2-ficha__module-text--box{padding-block:4rem;gap:2.9rem}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box{padding-block:5rem;gap:3rem}}@media (min-width: 1280px) and (max-width: 1365.98px){.info-img-v2-ficha__module-text--box{padding-bottom:5.5rem}}.info-img-v2-ficha__module-text--box h3{color:#4a4a49cc;text-transform:uppercase;font-size:1.6rem;line-height:1;letter-spacing:.064rem}@media (min-width: 540px){.info-img-v2-ficha__module-text--box h3{font-size:1.7rem;line-height:1;letter-spacing:.17rem}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box h3{font-size:2rem;line-height:1}}@media (min-width: 1280px){.info-img-v2-ficha__module-text--box h3{letter-spacing:.3rem}}.info-img-v2-ficha__module-text--box p{font-size:1.6rem;line-height:1.5}@media (min-width: 540px){.info-img-v2-ficha__module-text--box p{font-size:1.8rem;line-height:1.5555555556}}@media (min-width: 768px){.info-img-v2-ficha__module-text--box p{font-size:2rem;line-height:1.6;letter-spacing:.04rem}}@media (min-width: 1280px){.info-img-v2-ficha__module-text--box p{font-size:2rem;line-height:1.7}}.info-img-v2-ficha__module-text .btn__group{justify-content:center}.info-img-v2-ficha__module--right .info-img-v2-ficha__module-image{order:2}\n"] }]
|
|
10
|
+
}] });
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1pbmZvLWltZy12Mi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taW5mby1pbWctdjIvYmFieWxvbi1pbmZvLWltZy12Mi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24taW5mby1pbWctdjIvYmFieWxvbi1pbmZvLWltZy12Mi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVMxQyxNQUFNLE9BQU8seUJBQXlCOytHQUF6Qix5QkFBeUI7bUdBQXpCLHlCQUF5QixtRkNUdEMsaXZGQTJEQTs7NEZEbERhLHlCQUF5QjtrQkFQckMsU0FBUzsrQkFDSSx5QkFBeUIsY0FDdkIsSUFBSSxXQUNQLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1pbmZvLWltZy12MicsXG4gICAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgICBpbXBvcnRzOiBbXSxcbiAgICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1pbmZvLWltZy12Mi5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmw6ICcuL2JhYnlsb24taW5mby1pbWctdjIuY29tcG9uZW50LnNjc3MnLFxufSlcbmV4cG9ydCBjbGFzcyBCYWJ5bG9uSW5mb0ltZ1YyQ29tcG9uZW50IHt9XG4iLCI8c2VjdGlvbiBjbGFzcz1cImluZm8taW1nLXYyLWZpY2hhX19tb2R1bGVcIj5cbiAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLWltZy12Mi1maWNoYV9fbW9kdWxlLWlubmVyXCI+XG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby1pbWctdjItZmljaGFfX21vZHVsZS1pbWFnZVwiPlxuICAgICAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICAgICAgZm9jdXNhYmxlPVwiZmFsc2VcIlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImluZm8taW1nLXYyLWZpY2hhX19tb2R1bGUtZ3JhcGhpYy0tdG9wXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgIDx1c2VcbiAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tZ3JhcGhpYy5zdmcjaWNvbi1ncmFwaGljXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgICAgIDxzdmdcbiAgICAgICAgICAgICAgICAgICAgYXJpYS1oaWRkZW49XCJ0cnVlXCJcbiAgICAgICAgICAgICAgICAgICAgZm9jdXNhYmxlPVwiZmFsc2VcIlxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImluZm8taW1nLXYyLWZpY2hhX19tb2R1bGUtZ3JhcGhpYy0tYm90dG9tXCJcbiAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgIDx1c2VcbiAgICAgICAgICAgICAgICAgICAgICAgIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tZ3JhcGhpYy5zdmcjaWNvbi1ncmFwaGljXCJcbiAgICAgICAgICAgICAgICAgICAgPjwvdXNlPlxuICAgICAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICAgICAgICAgIDxmaWd1cmU+XG4gICAgICAgICAgICAgICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ltYWdlcy9pbWctMTgud2VicFwiIC8+XG4gICAgICAgICAgICAgICAgPC9maWd1cmU+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLWltZy12Mi1maWNoYV9fbW9kdWxlLWNvbnRlbnRcIj5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby1pbWctdjItZmljaGFfX21vZHVsZS1jb250ZW50LS1pbm5lclwiPlxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby1pbWctdjItZmljaGFfX21vZHVsZS1oZWFkaW5nXCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8aDI+RW50cmEgeSBiZW5lZsOtY2lhdGUhPC9oMj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxwPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIERlc2N1YnJlIG51ZXN0cm9zIHRyZXMgbml2ZWxlcywgU2lsdmVyLCBHb2xkIHlcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBQbGF0aW51bS4gUmVnw61zdHJhdGUgeSBvYnRlbmRyw6FzIGxhcyBwcmltZXJhc1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHZlbnRhamFzIGV4Y2x1c2l2YXMgcGFyYSB0dSBwcsOzeGltYSBlc3RhbmNpYSwgY3VhbnRvXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgbcOhcyBzdW1lIHR1IGVzdGFuY2lhLCBtw6FzIGNlcmNhIGVzdGFyw6FzIGRlbFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHNpZ3VpZW50ZSBuaXZlbC4gRGVzZGUgdHUgcGVyZmlsIHBvZHLDoXMgcmVzZXJ2YXIgZGVcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBtYW5lcmEgbcOhcyByw6FwaWRhIHkgcGVyc29uYWxpemFkYSwgY29uIGVsIG1lam9yXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcHJlY2lvIGdhcmFudGl6YWRvLlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8taW1nLXYyLWZpY2hhX19tb2R1bGUtdGV4dFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8taW1nLXYyLWZpY2hhX19tb2R1bGUtdGV4dC0tYm94XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgzPkRlc2RlIHR1IHBlcmZpbDwvaDM+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPHA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFBvZHLDoXMgcmVzZXJ2YXIgZGUgbWFuZXJhIG3DoXMgcsOhcGlkYSB5XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBlcnNvbmFsaXphZGEsIGNvbiBlbCBtZWpvciBwcmVjaW8gZ2FyYW50aXphZG8uXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9wPlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuX19ncm91cFwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxidXR0b24gY2xhc3M9XCJidG4gYnRuX19wcmltYXJ5XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPlJlZ8Otc3RyYXRlPC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuPC9zZWN0aW9uPlxuIl19
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { Component, EventEmitter, inject, Output } from '@angular/core';
|
|
3
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class BabylonLanguageModalV2Component {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.languageSelect = new EventEmitter();
|
|
8
|
+
this.languages = ['inglés', 'alemán', 'español', 'frances'];
|
|
9
|
+
this.selected = 'español';
|
|
10
|
+
this.dialogRef = inject(MatDialogRef);
|
|
11
|
+
}
|
|
12
|
+
selectLanguage(language) {
|
|
13
|
+
this.selected = language;
|
|
14
|
+
this.languageSelect.emit(language);
|
|
15
|
+
}
|
|
16
|
+
close() {
|
|
17
|
+
this.dialogRef.close();
|
|
18
|
+
}
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonLanguageModalV2Component, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
20
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonLanguageModalV2Component, isStandalone: true, selector: "lib-babylon-language-modal-v2", outputs: { languageSelect: "languageSelect" }, ngImport: i0, template: "<div class=\"modal modal__language\">\n <div class=\"modal__inner\">\n <div\n class=\"modal__close js-close\"\n data-modal_name=\"language\"\n role=\"button\"\n (click)=\"close()\"\n >\n <svg aria-hidden=\"true\" focusable=\"false\">\n <use href=\"/assets/babylon/svg/icon-close.svg#icon-close\"></use>\n </svg>\n </div>\n <div class=\"modal__box\">\n <div class=\"modal__check-list--outer\">\n <h2 class=\"modal__title\">Selecciona un idioma</h2>\n <div class=\"modal__check-list\">\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" checked=\"\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Ingl\u00E9s</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Alem\u00E1n</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Frances</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Espa\u00F1ol</span>\n </div>\n </label>\n </div>\n </div>\n </div>\n </div>\n <figure class=\"modal__language--graphic\">\n <img src=\"/assets/babylon/images/img-36.webp\" />\n </figure>\n </div>\n</div>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.modal{opacity:1!important;pointer-events:all!important}.modal.modal__language{background:#fff}.modal--open.language .modal.modal__language{opacity:1;pointer-events:auto}.modal.modal__language .modal__inner{display:flex;min-height:100%;flex-direction:column}.modal.modal__language .modal__box{flex:1 1 auto;display:flex;width:100%;justify-content:center;padding-block:8rem}@media (min-width: 540px){.modal.modal__language .modal__box{padding-block:10rem}}@media (min-width: 768px){.modal.modal__language .modal__box{padding-block:18rem}}@media (min-width: 1024px){.modal.modal__language .modal__box{padding-block:11rem}}@media (min-width: 1680px){.modal.modal__language .modal__box{align-items:center;padding-top:0}}.modal.modal__language .modal__language--graphic{width:100%;flex:0 0 auto;aspect-ratio:375/125;position:relative}@media (min-width: 1024px){.modal.modal__language .modal__language--graphic{aspect-ratio:1024/265}}@media (min-width: 1280px){.modal.modal__language .modal__language--graphic{aspect-ratio:unset;width:100%;height:28.8rem}}@media (min-width: 1680px){.modal.modal__language .modal__language--graphic{height:36.2rem}}@media (min-width: 1800px){.modal.modal__language .modal__language--graphic{height:50vh}}.modal.modal__language .modal__language--graphic img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover}.modal.modal__language .modal__title{font-size:1.6rem;line-height:1;letter-spacing:.064rem;text-transform:uppercase}@media (min-width: 540px){.modal.modal__language .modal__title{font-size:1.7rem;line-height:1;letter-spacing:.17rem}}@media (min-width: 768px){.modal.modal__language .modal__title{font-size:2rem;line-height:1}}@media (min-width: 1280px){.modal.modal__language .modal__title{letter-spacing:.3rem}}@media (min-width: 1366px){.modal.modal__language .modal__title{letter-spacing:.2rem}}@media (min-width: 1680px){.modal.modal__language .modal__title{letter-spacing:.3rem;font-size:2rem;line-height:.7;position:absolute;right:100%;top:50%;transform:translate(-15.2rem,-50%);width:max-content}}@media (min-width: 1800px){.modal.modal__language .modal__title{transform:translate(-16.2rem,-50%)}}.modal.modal__language .modal__check-list{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 540px){.modal.modal__language .modal__check-list{gap:3rem}}@media (min-width: 1024px){.modal.modal__language .modal__check-list{grid-template-columns:repeat(2,1fr)}}.modal.modal__language .modal__check-list--outer{display:flex;flex-direction:column;align-items:center;position:relative;gap:4rem}@media (min-width: 540px){.modal.modal__language .modal__check-list--outer{gap:5rem}}@media (min-width: 768px){.modal.modal__language .modal__check-list--outer{gap:6rem}}.modal.modal__language .modal__check-list .btn:not(:hover){opacity:.5}.modal.modal__language .modal__check-list label.switch{position:relative}.modal.modal__language .modal__check-list label.switch input{position:absolute;top:0;left:0}.modal.modal__language .modal__check-list label.switch input:checked+.btn{opacity:1}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
|
|
21
|
+
}
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonLanguageModalV2Component, decorators: [{
|
|
23
|
+
type: Component,
|
|
24
|
+
args: [{ selector: 'lib-babylon-language-modal-v2', standalone: true, imports: [CommonModule], template: "<div class=\"modal modal__language\">\n <div class=\"modal__inner\">\n <div\n class=\"modal__close js-close\"\n data-modal_name=\"language\"\n role=\"button\"\n (click)=\"close()\"\n >\n <svg aria-hidden=\"true\" focusable=\"false\">\n <use href=\"/assets/babylon/svg/icon-close.svg#icon-close\"></use>\n </svg>\n </div>\n <div class=\"modal__box\">\n <div class=\"modal__check-list--outer\">\n <h2 class=\"modal__title\">Selecciona un idioma</h2>\n <div class=\"modal__check-list\">\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" checked=\"\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Ingl\u00E9s</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Alem\u00E1n</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Frances</span>\n </div>\n </label>\n </div>\n <div>\n <label\n class=\"switch\"\n role=\"button\"\n (btnClick)=\"close()\"\n >\n <input type=\"radio\" name=\"lang\" />\n <div class=\"btn btn__primary\">\n <span>Espa\u00F1ol</span>\n </div>\n </label>\n </div>\n </div>\n </div>\n </div>\n <figure class=\"modal__language--graphic\">\n <img src=\"/assets/babylon/images/img-36.webp\" />\n </figure>\n </div>\n</div>\n", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle: \"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_background_dark-opacity: #19314bbf;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom: #0a1d31;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth: 1px;--cl_engine-bg: #fff;--cl_engine-bg-dark: #19314b;--cl_engine-input-bg: #47474724;--cl_engine-input-bg-select: #ebebeb;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #19314b;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg: #ededed;--cl_preload: #24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom: #79582c;--cl_footer-scroll: #aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth: 2px;--cl_engine-bg: #181818;--cl_engine-input-bg: #79582c;--cl_engine-input-bg-hover: #081523;--cl_engine-text: #fff;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_dropdown-radius: 20px;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.modal{opacity:1!important;pointer-events:all!important}.modal.modal__language{background:#fff}.modal--open.language .modal.modal__language{opacity:1;pointer-events:auto}.modal.modal__language .modal__inner{display:flex;min-height:100%;flex-direction:column}.modal.modal__language .modal__box{flex:1 1 auto;display:flex;width:100%;justify-content:center;padding-block:8rem}@media (min-width: 540px){.modal.modal__language .modal__box{padding-block:10rem}}@media (min-width: 768px){.modal.modal__language .modal__box{padding-block:18rem}}@media (min-width: 1024px){.modal.modal__language .modal__box{padding-block:11rem}}@media (min-width: 1680px){.modal.modal__language .modal__box{align-items:center;padding-top:0}}.modal.modal__language .modal__language--graphic{width:100%;flex:0 0 auto;aspect-ratio:375/125;position:relative}@media (min-width: 1024px){.modal.modal__language .modal__language--graphic{aspect-ratio:1024/265}}@media (min-width: 1280px){.modal.modal__language .modal__language--graphic{aspect-ratio:unset;width:100%;height:28.8rem}}@media (min-width: 1680px){.modal.modal__language .modal__language--graphic{height:36.2rem}}@media (min-width: 1800px){.modal.modal__language .modal__language--graphic{height:50vh}}.modal.modal__language .modal__language--graphic img{position:absolute;left:0;top:0;width:100%;height:100%;object-fit:cover}.modal.modal__language .modal__title{font-size:1.6rem;line-height:1;letter-spacing:.064rem;text-transform:uppercase}@media (min-width: 540px){.modal.modal__language .modal__title{font-size:1.7rem;line-height:1;letter-spacing:.17rem}}@media (min-width: 768px){.modal.modal__language .modal__title{font-size:2rem;line-height:1}}@media (min-width: 1280px){.modal.modal__language .modal__title{letter-spacing:.3rem}}@media (min-width: 1366px){.modal.modal__language .modal__title{letter-spacing:.2rem}}@media (min-width: 1680px){.modal.modal__language .modal__title{letter-spacing:.3rem;font-size:2rem;line-height:.7;position:absolute;right:100%;top:50%;transform:translate(-15.2rem,-50%);width:max-content}}@media (min-width: 1800px){.modal.modal__language .modal__title{transform:translate(-16.2rem,-50%)}}.modal.modal__language .modal__check-list{display:grid;grid-template-columns:1fr;gap:2rem}@media (min-width: 540px){.modal.modal__language .modal__check-list{gap:3rem}}@media (min-width: 1024px){.modal.modal__language .modal__check-list{grid-template-columns:repeat(2,1fr)}}.modal.modal__language .modal__check-list--outer{display:flex;flex-direction:column;align-items:center;position:relative;gap:4rem}@media (min-width: 540px){.modal.modal__language .modal__check-list--outer{gap:5rem}}@media (min-width: 768px){.modal.modal__language .modal__check-list--outer{gap:6rem}}.modal.modal__language .modal__check-list .btn:not(:hover){opacity:.5}.modal.modal__language .modal__check-list label.switch{position:relative}.modal.modal__language .modal__check-list label.switch input{position:absolute;top:0;left:0}.modal.modal__language .modal__check-list label.switch input:checked+.btn{opacity:1}\n"] }]
|
|
25
|
+
}], propDecorators: { languageSelect: [{
|
|
26
|
+
type: Output
|
|
27
|
+
}] } });
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1sYW5ndWFnZS1tb2RhbC12Mi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tbGFuZ3VhZ2UtbW9kYWwtdjIvYmFieWxvbi1sYW5ndWFnZS1tb2RhbC12Mi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tbGFuZ3VhZ2UtbW9kYWwtdjIvYmFieWxvbi1sYW5ndWFnZS1tb2RhbC12Mi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsTUFBTSxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBU3hELE1BQU0sT0FBTywrQkFBK0I7SUFQNUM7UUFRYyxtQkFBYyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUM7UUFFdEQsY0FBUyxHQUFHLENBQUMsUUFBUSxFQUFFLFFBQVEsRUFBRSxTQUFTLEVBQUUsU0FBUyxDQUFDLENBQUM7UUFFdkQsYUFBUSxHQUFHLFNBQVMsQ0FBQztRQUVKLGNBQVMsR0FDdEIsTUFBTSxDQUFDLFlBQVksQ0FBQyxDQUFDO0tBVTVCO0lBUkcsY0FBYyxDQUFDLFFBQWdCO1FBQzNCLElBQUksQ0FBQyxRQUFRLEdBQUcsUUFBUSxDQUFDO1FBQ3pCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxLQUFLO1FBQ0QsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUMzQixDQUFDOytHQWpCUSwrQkFBK0I7bUdBQS9CLCtCQUErQix3SUNYNUMsODJGQXdFQSxnN1VEakVjLFlBQVk7OzRGQUliLCtCQUErQjtrQkFQM0MsU0FBUzsrQkFDSSwrQkFBK0IsY0FDN0IsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDOzhCQUtiLGNBQWM7c0JBQXZCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIGluamVjdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBNYXREaWFsb2dSZWYgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kaWFsb2cnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2xpYi1iYWJ5bG9uLWxhbmd1YWdlLW1vZGFsLXYyJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9iYWJ5bG9uLWxhbmd1YWdlLW1vZGFsLXYyLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybDogJy4vYmFieWxvbi1sYW5ndWFnZS1tb2RhbC12Mi5jb21wb25lbnQuc2NzcycsXG59KVxuZXhwb3J0IGNsYXNzIEJhYnlsb25MYW5ndWFnZU1vZGFsVjJDb21wb25lbnQge1xuICAgIEBPdXRwdXQoKSBsYW5ndWFnZVNlbGVjdCA9IG5ldyBFdmVudEVtaXR0ZXI8c3RyaW5nPigpO1xuXG4gICAgbGFuZ3VhZ2VzID0gWydpbmdsw6lzJywgJ2FsZW3DoW4nLCAnZXNwYcOxb2wnLCAnZnJhbmNlcyddO1xuXG4gICAgc2VsZWN0ZWQgPSAnZXNwYcOxb2wnO1xuXG4gICAgcHJpdmF0ZSByZWFkb25seSBkaWFsb2dSZWY6IE1hdERpYWxvZ1JlZjxCYWJ5bG9uTGFuZ3VhZ2VNb2RhbFYyQ29tcG9uZW50PiA9XG4gICAgICAgIGluamVjdChNYXREaWFsb2dSZWYpO1xuXG4gICAgc2VsZWN0TGFuZ3VhZ2UobGFuZ3VhZ2U6IHN0cmluZyk6IHZvaWQge1xuICAgICAgICB0aGlzLnNlbGVjdGVkID0gbGFuZ3VhZ2U7XG4gICAgICAgIHRoaXMubGFuZ3VhZ2VTZWxlY3QuZW1pdChsYW5ndWFnZSk7XG4gICAgfVxuXG4gICAgY2xvc2UoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuZGlhbG9nUmVmLmNsb3NlKCk7XG4gICAgfVxufVxuIiwiPGRpdiBjbGFzcz1cIm1vZGFsIG1vZGFsX19sYW5ndWFnZVwiPlxuICAgIDxkaXYgY2xhc3M9XCJtb2RhbF9faW5uZXJcIj5cbiAgICAgICAgPGRpdlxuICAgICAgICAgICAgY2xhc3M9XCJtb2RhbF9fY2xvc2UganMtY2xvc2VcIlxuICAgICAgICAgICAgZGF0YS1tb2RhbF9uYW1lPVwibGFuZ3VhZ2VcIlxuICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAoY2xpY2spPVwiY2xvc2UoKVwiXG4gICAgICAgID5cbiAgICAgICAgICAgIDxzdmcgYXJpYS1oaWRkZW49XCJ0cnVlXCIgZm9jdXNhYmxlPVwiZmFsc2VcIj5cbiAgICAgICAgICAgICAgICA8dXNlIGhyZWY9XCIvYXNzZXRzL2JhYnlsb24vc3ZnL2ljb24tY2xvc2Uuc3ZnI2ljb24tY2xvc2VcIj48L3VzZT5cbiAgICAgICAgICAgIDwvc3ZnPlxuICAgICAgICA8L2Rpdj5cbiAgICAgICAgPGRpdiBjbGFzcz1cIm1vZGFsX19ib3hcIj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJtb2RhbF9fY2hlY2stbGlzdC0tb3V0ZXJcIj5cbiAgICAgICAgICAgICAgICA8aDIgY2xhc3M9XCJtb2RhbF9fdGl0bGVcIj5TZWxlY2Npb25hIHVuIGlkaW9tYTwvaDI+XG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm1vZGFsX19jaGVjay1saXN0XCI+XG4gICAgICAgICAgICAgICAgICAgIDxkaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInN3aXRjaFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKGJ0bkNsaWNrKT1cImNsb3NlKClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCB0eXBlPVwicmFkaW9cIiBjaGVja2VkPVwiXCIgbmFtZT1cImxhbmdcIiAvPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG4gYnRuX19wcmltYXJ5XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPkluZ2zDqXM8L3NwYW4+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICA8L2xhYmVsPlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgPGRpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxsYWJlbFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwic3dpdGNoXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAoYnRuQ2xpY2spPVwiY2xvc2UoKVwiXG4gICAgICAgICAgICAgICAgICAgICAgICA+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlucHV0IHR5cGU9XCJyYWRpb1wiIG5hbWU9XCJsYW5nXCIgLz5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuIGJ0bl9fcHJpbWFyeVwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3Bhbj5BbGVtw6FuPC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9sYWJlbD5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgICAgIDxkaXY+XG4gICAgICAgICAgICAgICAgICAgICAgICA8bGFiZWxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInN3aXRjaFwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgcm9sZT1cImJ1dHRvblwiXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgKGJ0bkNsaWNrKT1cImNsb3NlKClcIlxuICAgICAgICAgICAgICAgICAgICAgICAgPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpbnB1dCB0eXBlPVwicmFkaW9cIiBuYW1lPVwibGFuZ1wiIC8+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0biBidG5fX3ByaW1hcnlcIj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+RnJhbmNlczwvc3Bhbj5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDwvbGFiZWw+XG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICA8ZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgPGxhYmVsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJzd2l0Y2hcIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIHJvbGU9XCJidXR0b25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIChidG5DbGljayk9XCJjbG9zZSgpXCJcbiAgICAgICAgICAgICAgICAgICAgICAgID5cbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aW5wdXQgdHlwZT1cInJhZGlvXCIgbmFtZT1cImxhbmdcIiAvPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG4gYnRuX19wcmltYXJ5XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuPkVzcGHDsW9sPC9zcGFuPlxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgICAgICAgICAgICAgPC9sYWJlbD5cbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG4gICAgICAgIDxmaWd1cmUgY2xhc3M9XCJtb2RhbF9fbGFuZ3VhZ2UtLWdyYXBoaWNcIj5cbiAgICAgICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ltYWdlcy9pbWctMzYud2VicFwiIC8+XG4gICAgICAgIDwvZmlndXJlPlxuICAgIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|