ctt-babylon 0.13.46 → 0.14.1
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-static-footer-v4/babylon-static-footer-v4.component.mjs +70 -0
- package/esm2022/lib/components/core/babylon-static-footer-v4/index.mjs +2 -0
- package/esm2022/lib/components/core/index.mjs +2 -1
- package/esm2022/lib/components/external/core/c4-fo-link-svg/c4-fo-link-svg.component.mjs +6 -3
- package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
- package/esm2022/lib/services/mapper/mapper.service.mjs +71 -1
- package/fesm2022/ctt-babylon.mjs +133 -3
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-static-footer-v4/babylon-static-footer-v4.component.d.ts +28 -0
- package/lib/components/core/babylon-static-footer-v4/index.d.ts +1 -0
- package/lib/components/core/index.d.ts +1 -0
- package/lib/components/external/core/c4-fo-link-svg/c4-fo-link-svg.component.d.ts +1 -0
- package/lib/interfaces/babylon-text-info.interface.d.ts +5 -0
- package/lib/services/mapper/mapper.service.d.ts +3 -0
- package/package.json +1 -1
package/fesm2022/ctt-babylon.mjs
CHANGED
|
@@ -3101,6 +3101,7 @@ class MapperService {
|
|
|
3101
3101
|
offer: this.mapOfferDetail(props),
|
|
3102
3102
|
multimedia: this.mapImages(props?.multimedia),
|
|
3103
3103
|
address: this.mapAddress(props?.address),
|
|
3104
|
+
addressHotels: this.mapGlobalAddressHotels(props),
|
|
3104
3105
|
links: Utils.mapButtons(props?.links?.length
|
|
3105
3106
|
? props?.links
|
|
3106
3107
|
: props?.links?.Links?.length
|
|
@@ -3149,6 +3150,70 @@ class MapperService {
|
|
|
3149
3150
|
pruneEmpty: true,
|
|
3150
3151
|
});
|
|
3151
3152
|
}
|
|
3153
|
+
mapGlobalAddressHotels(props) {
|
|
3154
|
+
// 1. Intentamos obtener la fuente de datos (contemplamos ambos nombres de propiedad)
|
|
3155
|
+
const rawSource = props?.hotelAddresses ?? props?.addressHotels;
|
|
3156
|
+
if (rawSource) {
|
|
3157
|
+
// Aplanamos el array sin importar la profundidad [[{...}]] -> [{...}]
|
|
3158
|
+
const flatAddresses = Array.isArray(rawSource)
|
|
3159
|
+
? rawSource.flat(Infinity)
|
|
3160
|
+
: [rawSource];
|
|
3161
|
+
// Filtramos para asegurar que solo procesamos objetos válidos
|
|
3162
|
+
const validAddresses = flatAddresses.filter((address) => address &&
|
|
3163
|
+
typeof address === 'object' &&
|
|
3164
|
+
!Array.isArray(address));
|
|
3165
|
+
if (validAddresses.length > 0) {
|
|
3166
|
+
return validAddresses.map((address) => ({
|
|
3167
|
+
id: address.id,
|
|
3168
|
+
name: address.name,
|
|
3169
|
+
address: address.address,
|
|
3170
|
+
city: address.city,
|
|
3171
|
+
province: address.province,
|
|
3172
|
+
country: address.country,
|
|
3173
|
+
cp: address.cp,
|
|
3174
|
+
url: address.link ?? address.url,
|
|
3175
|
+
phone: address.phone,
|
|
3176
|
+
email: address.email,
|
|
3177
|
+
full_address: address.fullAddress ?? address.full_address,
|
|
3178
|
+
}));
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
// 2. Caso Fallback: Mapeo dinámico desde los textos (addresslistXX)
|
|
3182
|
+
return this.mapDynamicAddressesFromTexts(props?.texts);
|
|
3183
|
+
}
|
|
3184
|
+
/** Helper para limpiar el código principal */
|
|
3185
|
+
mapDynamicAddressesFromTexts(texts) {
|
|
3186
|
+
if (!texts)
|
|
3187
|
+
return undefined;
|
|
3188
|
+
const addressesMap = {};
|
|
3189
|
+
Object.keys(texts).forEach((key) => {
|
|
3190
|
+
if (key.startsWith('addresslist') && texts[key]) {
|
|
3191
|
+
const match = key.match(/addresslist(\d+)(.*)/);
|
|
3192
|
+
if (match) {
|
|
3193
|
+
const index = match[1];
|
|
3194
|
+
const field = match[2];
|
|
3195
|
+
if (!addressesMap[index]) {
|
|
3196
|
+
addressesMap[index] = { id: index };
|
|
3197
|
+
}
|
|
3198
|
+
const value = texts[key];
|
|
3199
|
+
switch (field) {
|
|
3200
|
+
case 'Title':
|
|
3201
|
+
addressesMap[index].name = value;
|
|
3202
|
+
break;
|
|
3203
|
+
case 'Address':
|
|
3204
|
+
addressesMap[index].address = value;
|
|
3205
|
+
addressesMap[index].full_address = value;
|
|
3206
|
+
break;
|
|
3207
|
+
case 'Telf':
|
|
3208
|
+
addressesMap[index].phone = value;
|
|
3209
|
+
break;
|
|
3210
|
+
}
|
|
3211
|
+
}
|
|
3212
|
+
}
|
|
3213
|
+
});
|
|
3214
|
+
const result = Object.values(addressesMap);
|
|
3215
|
+
return result.length > 0 ? result : undefined;
|
|
3216
|
+
}
|
|
3152
3217
|
mapGlobalExperiences(experiences) {
|
|
3153
3218
|
return experiences
|
|
3154
3219
|
?.filter((experience) => experience.active)
|
|
@@ -3295,6 +3360,7 @@ class MapperService {
|
|
|
3295
3360
|
leve3: this.getTextValue(texts?.leve3),
|
|
3296
3361
|
whatsapp: this.getTextValue(texts?.whatsapp),
|
|
3297
3362
|
scrolltext: this.getTextValue(texts?.scrolltext ?? texts?.scrollDown),
|
|
3363
|
+
address: this.getTextValue(texts?.address),
|
|
3298
3364
|
addresstitle: this.getTextValue(texts?.addresstitle ?? texts?.addressTitle),
|
|
3299
3365
|
bannertext: this.getTextValue(texts?.bannertext),
|
|
3300
3366
|
contacttitle: this.getTextValue(texts?.contacttitle ?? texts?.contactTitle),
|
|
@@ -3350,6 +3416,10 @@ class MapperService {
|
|
|
3350
3416
|
howGetTitle2: this.getTextValue(texts?.howGetTitle2),
|
|
3351
3417
|
contactDescription: this.getTextValue(texts?.contactDescription),
|
|
3352
3418
|
contactTitle: this.getTextValue(texts?.contactTitle),
|
|
3419
|
+
newsletterError: this.getTextValue(texts?.newsletterError),
|
|
3420
|
+
newsletterFail: this.getTextValue(texts?.newsletterFail),
|
|
3421
|
+
newsletterSuccessfull: this.getTextValue(texts?.newsletterSuccessfull),
|
|
3422
|
+
newsletterTitle: this.getTextValue(texts?.newsletterTitle),
|
|
3353
3423
|
};
|
|
3354
3424
|
}
|
|
3355
3425
|
getTextValue(text) {
|
|
@@ -16379,6 +16449,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
16379
16449
|
type: Input
|
|
16380
16450
|
}] } });
|
|
16381
16451
|
|
|
16452
|
+
class BabylonStaticFooterV4Component {
|
|
16453
|
+
constructor(sanitizer, cdr, fb) {
|
|
16454
|
+
this.sanitizer = sanitizer;
|
|
16455
|
+
this.cdr = cdr;
|
|
16456
|
+
this.fb = fb;
|
|
16457
|
+
this.submitForm = new EventEmitter();
|
|
16458
|
+
this.safeUrl = null;
|
|
16459
|
+
}
|
|
16460
|
+
ngOnInit() {
|
|
16461
|
+
this.form = this.fb.group({
|
|
16462
|
+
input: ['', [Validators.email, Validators.required]],
|
|
16463
|
+
checkbox: [false, [Validators.requiredTrue]],
|
|
16464
|
+
});
|
|
16465
|
+
}
|
|
16466
|
+
validateInput() {
|
|
16467
|
+
if (this.input) {
|
|
16468
|
+
this.input.valid = this.form.controls['input'].errors === null;
|
|
16469
|
+
}
|
|
16470
|
+
}
|
|
16471
|
+
inputChange(event) {
|
|
16472
|
+
this.input.value = event.target.value;
|
|
16473
|
+
}
|
|
16474
|
+
submit() {
|
|
16475
|
+
this.submitForm.emit(this.form.controls['input'].value);
|
|
16476
|
+
this.form.reset();
|
|
16477
|
+
}
|
|
16478
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonStaticFooterV4Component, deps: [{ token: i1$3.DomSanitizer }, { token: i0.ChangeDetectorRef }, { token: i1$4.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
16479
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonStaticFooterV4Component, isStandalone: true, selector: "lib-babylon-static-footer-v4", inputs: { address: "address", addressHotels: "addressHotels", texts: "texts", buttons: "buttons", tags: "tags", textColors: "textColors" }, outputs: { submitForm: "submitForm" }, ngImport: i0, template: "<!-- La foto es opcional -->\n<footer class=\"babylon__footer cs_bg_filed\">\n <div class=\"cs_footer_main\">\n <div class=\"container-fluid cs_plr_100\">\n <div class=\"cs_footer_grid_4\">\n @if (address?.length) {\n @for (add of address; track $index) {\n <div class=\"cs_footer_grid_item\">\n <div class=\"cs_footer_item\">\n <lib-babylon-dynamic-heading\n [tag]=\"tags?.title || 'h5'\"\n cssClass=\"cs_widget_title title--smaller\"\n [color]=\"textColors?.title\"\n [content]=\"add.name\"\n wrapper=\"span\"\n ></lib-babylon-dynamic-heading>\n <div class=\"cs_text_widget\">\n <a\n [attr.aria-label]=\"add.address\"\n [href]=\"add.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none': !add.url,\n }\"\n >\n @if (add.address) {\n {{ add.address }} <br />\n }\n @if (add.cp && add.city) {\n {{ add.cp }} {{ add.city }}\n <br />\n }\n @if (add.province && add.country) {\n {{ add.province }}\n {{ add.country }}\n }\n </a>\n <br />\n @if (add.phone) {\n <a\n class=\"phone\"\n [attr.aria-label]=\"add.phone\"\n [href]=\"'tel:' + add.phone\"\n linkType=\"external\"\n >\n {{ add.phone }}\n </a>\n <br />\n }\n @if (add.email) {\n <a\n [attr.aria-label]=\"add.email\"\n [href]=\"'mailto:' + add.email\"\n linkType=\"external\"\n >\n {{ add.email }}\n </a>\n <br />\n }\n </div>\n </div>\n </div>\n }\n }\n @if (addressHotels?.length) {\n @for (address of addressHotels; track $index) {\n <div class=\"cs_footer_grid_item address_hotels\">\n <div class=\"cs_footer_item\">\n @if (address.name) {\n <lib-babylon-dynamic-heading\n [tag]=\"tags?.title || 'h5'\"\n cssClass=\"cs_widget_title title--smaller\"\n [color]=\"textColors?.title\"\n [content]=\"address.name\"\n wrapper=\"span\"\n ></lib-babylon-dynamic-heading>\n }\n\n <div class=\"cs_text_widget\">\n @if (address.full_address) {\n <a\n [attr.aria-label]=\"\n address.full_address\n \"\n [href]=\"address.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none': !address.url,\n }\"\n [innerHTML]=\"address.full_address\"\n >\n </a>\n <br />\n } @else {\n @if (address.address) {\n <a\n [attr.aria-label]=\"\n address.address\n \"\n [href]=\"address.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none':\n !address.url,\n }\"\n >\n {{ address.address }}\n <br />\n {{ address.cp }}\n {{ address.city }}\n {{ address.province }}\n <br />\n {{ address.country }}\n </a>\n <br />\n }\n }\n @if (address.phone) {\n <a\n class=\"phone\"\n [attr.aria-label]=\"address.phone\"\n [href]=\"'tel:' + address.phone\"\n linkType=\"external\"\n >\n {{ address.phone }}\n </a>\n <br />\n }\n @if (address.email) {\n <a\n [attr.aria-label]=\"address.email\"\n [href]=\"'mailto:' + address.email\"\n linkType=\"external\"\n >\n {{ address.email }}\n </a>\n <br />\n }\n </div>\n </div>\n </div>\n }\n }\n\n @if (texts?.newsletterTitle) {\n <div class=\"cs_footer_grid_item\">\n <div class=\"cs_footer_item\">\n <div id=\"message-newsletter\"></div>\n @if (texts?.newsletterTitle) {\n <form\n name=\"newsletter_form\"\n id=\"newsletter_form\"\n [formGroup]=\"form\"\n >\n <div class=\"form-group\">\n <input\n type=\"text\"\n class=\"form-control\"\n formControlName=\"input\"\n [placeholder]=\"\n texts?.newsletterTitle\n \"\n (input)=\"inputChange($event)\"\n (blur)=\"validateInput()\"\n />\n <button\n name=\"submit\"\n type=\"submit\"\n id=\"submit-newsletter\"\n (click)=\"submit()\"\n [ngClass]=\"{\n 'pointers-none': !form.valid,\n }\"\n >\n <i\n class=\"babylon-arrow-right btn-send\"\n ></i>\n </button>\n </div>\n <div class=\"checkbox-element\">\n <mat-checkbox\n class=\"formcontrol\"\n formControlName=\"checkbox\"\n ></mat-checkbox>\n @if (texts?.conditions) {\n <span\n class=\"text--small m-0 pt-2\"\n [innerHTML]=\"texts?.conditions\"\n ></span>\n }\n </div>\n </form>\n }\n </div>\n </div>\n }\n </div>\n </div>\n </div>\n <div class=\"cs_bottom_footer_wrap\">\n <div class=\"container-fluid cs_plr_100\">\n <div class=\"cs_bottom_footer position-relative\">\n <span class=\"cs_scrollup cs_center\" scrollUp>\n <svg\n width=\"15\"\n height=\"7\"\n viewBox=\"0 0 15 7\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M15 6.18793L14.1169 7L7.93687 1.31723C7.81958 1.20941 7.66053 1.14885 7.49468 1.14885C7.32884 1.14885 7.16978 1.20941 7.0525 1.31723L0.884376 6.99022L0 6.177L6.16812 0.505163C6.51998 0.181708 6.99715 0 7.49468 0C7.99222 0 8.46938 0.181708 8.82125 0.505163L15 6.18793Z\"\n fill=\"currentColor\"\n />\n </svg>\n <span class=\"cs_scrollup_bg_dotted cs_accent_color\">\n <svg\n width=\"56\"\n height=\"56\"\n viewBox=\"0 0 56 56\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <circle\n cx=\"28\"\n cy=\"28\"\n r=\"27.5\"\n stroke=\"currentColor\"\n stroke-dasharray=\"5 5\"\n />\n </svg>\n </span>\n </span>\n </div>\n </div>\n </div>\n</footer>\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_background_dark-opacity-v2: #1326398b;--cl_background_body-transparent: #ffffffe7;--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;--cl_text-disable: #888;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--padding-bottom-slider: 0px;--lh_pretitle-slider: 1.2;--lh_title-slider: 1.2;--cl_header-bg-nosticky: #0000001a;--cl_header-text-nosticky: #fff;--cl_header-bg-sticky: #eee;--cl_header-text-sticky: #19314b;--cl_header-bg-mobile: #b6b6b6;--cl_headerBottom-bg-mobile: #b6b6b6;--cl_header-text-mobile: #19314b;--cl_menu-modal-bg: #19314b;--cl_menu-modal-items: #978667;--cl_menu-modal-items-hover: #fff;--cl_menu-modal-text: #fff;--cl_menu-modal-text-hover: #fff;--ls_menu-modal-items: 1px;--w_menu-modal-items: 300;--hg_menu-img-height: 15rem;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--size_btn: 14px;--size_link: 14px;--ls_link: 1px;--ls_btn: 1px;--upper_btn: uppercase;--upper_link: uppercase;--font-btn: \"Poppins\", Helvetica, sans-serif;--font-link: \"Poppins\", Helvetica, sans-serif;--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: #fff;--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-bg-logos: #f8f7f3;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-width: 1px;--dropdown-radius: 20px;--cl_background_dropdown: #fdfbf8;--cl_border-dropdown: #d9e1e6;--font-size-engine-text: 14px;--cl_engine-text: #19314b;--cl_engine-bg-nosticky: #ffffffcf;--cl_engine-text-nosticky: #19314b;--cl_engine-bg-sticky: #ffffff00;--cl_engine-text-sticky: #19314b;--cl_engine-bg-modal: #19314bbf;--cl_engine-input-bg: #ebebeb;--cl_engine-input-bg-select: #ebebeb;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_error: #ff7173;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff;--alg-service-room-detail: center;--cl_alert-text: #19314b;--cl_alert-text-error: #fff;--cl_alert-background: #fff;--cl_alert-background-error: rgb(230, 92, 92);--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: var(--cl_corp);--mdc-checkbox-selected-hover-icon-color: var(--cl_corp);--mdc-checkbox-selected-icon-color: var(--cl_corp);--mdc-checkbox-selected-pressed-icon-color: var(--cl_corp);--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: var(--cl_corp);--mdc-checkbox-selected-hover-state-layer-color: var(--cl_corp);--mdc-checkbox-selected-pressed-state-layer-color: var(--cl_corp);--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--primary: #4a4a49;--cream: #f9f8f5;--white: #ffffff;--black: #000000;--whatsapp: #24cc63;--logo: #616161;--grey: #dcdcdc;--darkgrey: #1e1e1e;--instagram: #61bdff;--facebook: #3782f4;--twitter: #4a4a49;--youtube: #d9464b;--tripadvisor: #34e0a1;--booking: #0c3b7c;--silver: #c0bebe;--gold: #ffca64;--platinum: #b5d9e2}.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;--type-align: center;--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-width: 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}@media (min-width: 1280px){.order-custom-xl-xxl-1{order:1}.order-custom-xl-xxl-2{order:2}}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width: 540px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width: 768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width: 1025px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width: 1280px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}@media (min-width: 1366px){.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.m-xxl-auto{margin:auto!important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto!important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto!important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto!important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto!important}}@media (min-width: 1680px){.flex-xxxl-row{flex-direction:row!important}.flex-xxxl-column{flex-direction:column!important}.flex-xxxl-row-reverse{flex-direction:row-reverse!important}.flex-xxxl-column-reverse{flex-direction:column-reverse!important}.flex-xxxl-wrap{flex-wrap:wrap!important}.flex-xxxl-nowrap{flex-wrap:nowrap!important}.flex-xxxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxxl-fill{flex:1 1 auto!important}.flex-xxxl-grow-0{flex-grow:0!important}.flex-xxxl-grow-1{flex-grow:1!important}.flex-xxxl-shrink-0{flex-shrink:0!important}.flex-xxxl-shrink-1{flex-shrink:1!important}.justify-content-xxxl-start{justify-content:flex-start!important}.justify-content-xxxl-end{justify-content:flex-end!important}.justify-content-xxxl-center{justify-content:center!important}.justify-content-xxxl-between{justify-content:space-between!important}.justify-content-xxxl-around{justify-content:space-around!important}.align-items-xxxl-start{align-items:flex-start!important}.align-items-xxxl-end{align-items:flex-end!important}.align-items-xxxl-center{align-items:center!important}.align-items-xxxl-baseline{align-items:baseline!important}.align-items-xxxl-stretch{align-items:stretch!important}.align-content-xxxl-start{align-content:flex-start!important}.align-content-xxxl-end{align-content:flex-end!important}.align-content-xxxl-center{align-content:center!important}.align-content-xxxl-between{align-content:space-between!important}.align-content-xxxl-around{align-content:space-around!important}.align-content-xxxl-stretch{align-content:stretch!important}.align-self-xxxl-auto{align-self:auto!important}.align-self-xxxl-start{align-self:flex-start!important}.align-self-xxxl-end{align-self:flex-end!important}.align-self-xxxl-center{align-self:center!important}.align-self-xxxl-baseline{align-self:baseline!important}.align-self-xxxl-stretch{align-self:stretch!important}.m-xxxl-auto{margin:auto!important}.mt-xxxl-auto,.my-xxxl-auto{margin-top:auto!important}.mr-xxxl-auto,.mx-xxxl-auto{margin-right:auto!important}.mb-xxxl-auto,.my-xxxl-auto{margin-bottom:auto!important}.ml-xxxl-auto,.mx-xxxl-auto{margin-left:auto!important}}@media (min-width: 1921px){.flex-xxxxl-row{flex-direction:row!important}.flex-xxxxl-column{flex-direction:column!important}.flex-xxxxl-row-reverse{flex-direction:row-reverse!important}.flex-xxxxl-column-reverse{flex-direction:column-reverse!important}.flex-xxxxl-wrap{flex-wrap:wrap!important}.flex-xxxxl-nowrap{flex-wrap:nowrap!important}.flex-xxxxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxxxl-fill{flex:1 1 auto!important}.flex-xxxxl-grow-0{flex-grow:0!important}.flex-xxxxl-grow-1{flex-grow:1!important}.flex-xxxxl-shrink-0{flex-shrink:0!important}.flex-xxxxl-shrink-1{flex-shrink:1!important}.justify-content-xxxxl-start{justify-content:flex-start!important}.justify-content-xxxxl-end{justify-content:flex-end!important}.justify-content-xxxxl-center{justify-content:center!important}.justify-content-xxxxl-between{justify-content:space-between!important}.justify-content-xxxxl-around{justify-content:space-around!important}.align-items-xxxxl-start{align-items:flex-start!important}.align-items-xxxxl-end{align-items:flex-end!important}.align-items-xxxxl-center{align-items:center!important}.align-items-xxxxl-baseline{align-items:baseline!important}.align-items-xxxxl-stretch{align-items:stretch!important}.align-content-xxxxl-start{align-content:flex-start!important}.align-content-xxxxl-end{align-content:flex-end!important}.align-content-xxxxl-center{align-content:center!important}.align-content-xxxxl-between{align-content:space-between!important}.align-content-xxxxl-around{align-content:space-around!important}.align-content-xxxxl-stretch{align-content:stretch!important}.align-self-xxxxl-auto{align-self:auto!important}.align-self-xxxxl-start{align-self:flex-start!important}.align-self-xxxxl-end{align-self:flex-end!important}.align-self-xxxxl-center{align-self:center!important}.align-self-xxxxl-baseline{align-self:baseline!important}.align-self-xxxxl-stretch{align-self:stretch!important}.m-xxxxl-auto{margin:auto!important}.mt-xxxxl-auto,.my-xxxxl-auto{margin-top:auto!important}.mr-xxxxl-auto,.mx-xxxxl-auto{margin-right:auto!important}.mb-xxxxl-auto,.my-xxxxl-auto{margin-bottom:auto!important}.ml-xxxxl-auto,.mx-xxxxl-auto{margin-left:auto!important}}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.mt--150{margin-top:150px!important}.mb--150{margin-bottom:150px!important}.pt--150{padding-top:150px}.pb--150{padding-bottom:150px}.mblock--150{margin-block:150px}.pblock--150{padding-block:150px}.mt--180{margin-top:180px!important}.mb--180{margin-bottom:180px!important}.pt--180{padding-top:180px}.pb--180{padding-bottom:180px}.mblock--180{margin-block:180px}.pblock--180{padding-block:180px}@keyframes move-right{0%{right:30px}50%{right:20px}to{right:30px}}.babylon__footer{background-color:var(--cl_footer-bg);color:var(--cl_footer-text)}.babylon__footer a{color:var(--cl_footer-text);text-decoration:none;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.babylon__footer a:hover{color:var(--cl_footer-text-hover);text-decoration:underline}@media (max-width: 767px){.babylon__footer{padding-bottom:60px}}:host ::ng-deep .cs_widget_title{margin-bottom:47px}@media (max-width: 1024px){:host ::ng-deep .cs_widget_title{margin-bottom:30px}}:host ::ng-deep .cs_widget_title span{display:inline-block;position:relative;padding-right:20px;color:var(--cl_footer-text)}:host ::ng-deep .cs_widget_title span:before{content:\"\";position:absolute;height:1px;width:50px;background-color:var(--cl_footer-text);left:100%;top:54%;transition:all .3s ease}@media (max-width: 539px){:host ::ng-deep .cs_widget_title span{display:flex;flex-direction:column;align-items:center;text-align:center;padding-right:0}:host ::ng-deep .cs_widget_title span:before{position:relative;left:0;top:40px;width:40px}}.cs_menu_widget{padding:0;margin:0;list-style:none}.cs_menu_widget li:not(:last-child){margin-bottom:8px}.cs_menu_widget+.cs_social_btns{margin-top:20px;font-size:20px}.cs_menu_widget+.cs_social_btns a{text-decoration:none!important}.cs_social_btns{display:flex;flex-wrap:wrap;font-size:13px;gap:10px}.cs_social_btns a{height:30px;width:30px;border-radius:50%;display:flex}.cs_social_btns a:hover{transform:scale(1.2)}.cs_social_btns a:hover svg{fill:var(--cl_footer-text)}@media (max-width: 539px){.cs_social_btns{justify-content:center}}.cs_bottom_footer_wrap{background-color:var(--cl_footer-bg-bottom)}.cs_bottom_footer_wrap .container-fluid{overflow:visible}.cs_bottom_footer{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding:30px 0;gap:2px 15px}@media (max-width: 767px){.cs_bottom_footer{flex-direction:column;padding:40px 0 20px}}.cs_footer_logo{display:flex;align-items:center;position:relative;left:85%}.cs_footer_logo .footer-logo-img{max-width:200px;height:auto}@media (max-width: 767px){.cs_footer_logo{position:relative;margin:20px 0}}@media (max-width: 767px){.cs_footer_logo{left:auto;justify-content:center}}.cs_copyright a{color:var(--cl_footer-text);background-repeat:no-repeat;background-image:linear-gradient(90deg,currentColor 0,currentColor 100%);transition:background-size .6s cubic-bezier(.49,.49,.08,1),color .27s ease-out;background-position:100% calc(100% + -0px);background-size:0 2px}.cs_copyright a:hover{background-size:100% 2px;background-position:0 calc(100% + -0px)}.cs_fullscreen_footer_in{height:100px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px 30px}.cs_footer_main{padding:100px 0}@media (max-width: 1024px){.cs_footer_main{padding:80px 0}}.cs_footer_grid_4{display:flex;gap:30px 70px}@media (max-width: 1024px){.cs_footer_grid_4{gap:30px 40px}}@media (max-width: 1279px){.cs_footer_grid_4{gap:30px 24px}}@media (max-width: 1024px){.cs_footer_grid_4{display:grid;gap:55px 24px;grid-template-columns:repeat(2,1fr);padding:0 40px}}@media (max-width: 539px){.cs_footer_grid_4{gap:55px 24px;grid-template-columns:repeat(1,1fr);padding:0}}.cs_footer_grid_4 .cs_footer_grid_item{flex:1}.cs_footer_grid_4 .cs_footer_grid_item:first-child{flex:1.4}.cs_footer_grid_4 .cs_footer_grid_item:nth-child(2){flex:1.4}.cs_footer_grid_4 .cs_footer_grid_item:last-child{flex:2.1}.cs_footer_grid_4 .cs_footer_grid_item.address_hotels{flex:1.7}@media (max-width: 539px){.cs_footer_grid_4 .cs_footer_grid_item{text-align:center}}.cs_footer_grid_4.cs_type_1{gap:30px 10%}@media (max-width: 1679px){.cs_footer_grid_4.cs_type_1{gap:30px 6%}}@media (max-width: 1024px){.cs_footer_grid_4.cs_type_1{gap:30px 40px}}@media (max-width: 1279px){.cs_footer_grid_4.cs_type_1{gap:30px 24px}}@media (max-width: 1024px){.cs_footer_grid_4.cs_type_1{gap:55px 24px}}@media (max-width: 539px){.cs_footer_grid_4.cs_type_1{gap:55px 24px}}.cs_footer_links{display:flex;flex-wrap:wrap}.cs_footer_links li:not(:last-child):after{content:\"|\";margin:0 10px;position:relative;top:-1px}.cs_footer_map{height:260px}.cs_footer_map iframe{height:100%;display:block;border:none;width:100%;filter:grayscale(100%) invert(95%) contrast(140%);outline:none}.cs_scrollup{position:absolute;left:50%;transform:translate(-50%);height:46px;width:46px;top:-23px;background-color:var(--cl_footer-scroll)!important;border-radius:50%;cursor:pointer}.cs_scrollup>svg{position:relative;z-index:2}.cs_scrollup>svg path{color:var(--cl_footer-bg)!important}.cs_scrollup .cs_scrollup_bg_dotted{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);animation:rotate 15s linear infinite;animation-play-state:paused}.cs_scrollup:before{content:\"\";position:absolute;height:100%;width:100%;left:0;top:0;border-radius:50%;background-color:var(--cl_footer-scroll);opacity:.5}.cs_scrollup:hover .cs_scrollup_bg_dotted{animation-play-state:initial}.cs_scrollup.cs_type_1{top:20px}@media (max-width: 1024px){.cs_scrollup.cs_type_1{top:-23px}}@keyframes rotate{0%{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}a{text-decoration:none!important}#newsletter_form h5{margin:0 0 25px}@media (max-width: 767px){#newsletter_form h5{margin:0 0 15px}}#newsletter_form .form-group{position:relative}#newsletter_form input[type=email]{border:0;height:45px;border-radius:3px;padding-left:15px;background-color:var(--cl_footer-text);color:var(--cl_footer-text-hover);width:100%}#newsletter_form input[type=email]::placeholder,#newsletter_form input[type=email]::-webkit-input-placeholder,#newsletter_form input[type=email]::-moz-placeholder,#newsletter_form input[type=email]:-ms-input-placeholder,#newsletter_form input[type=email]::-ms-input-placeholder{color:red!important;opacity:1;font-size:16px}#newsletter_form input[type=email]:focus{border:0;box-shadow:none}#newsletter_form button[type=submit]{position:absolute;right:5px;color:var(--cl_footer-text);font-size:22px;font-size:1.375rem;top:-2px;border:0;opacity:.6;height:100%;cursor:pointer;background-color:transparent;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;transition:all .3s ease-in-out;outline:none}#newsletter_form button[type=submit]:hover{opacity:1}#newsletter_form .checkbox-element{display:flex!important;align-items:center!important;cursor:pointer}#newsletter_form .checkbox-element .text--small{color:var(--cl_footer-text)!important;padding:0!important}#newsletter_form .checkbox-element .text--small::ng-deep p{color:var(--cl_footer-text)!important;margin:0}#newsletter_form .checkbox-element .text--small::ng-deep a{color:var(--cl_footer-text)!important}#newsletter_form .checkbox-element .text--small::ng-deep a:hover{color:var(--cl_footer-text-hover)!important}#newsletter_form .mdc-checkbox__native-control{color:var(--cl_footer-text)!important}#newsletter_form .btn-send{color:var(--cl_corp)!important;font-size:16px;font-weight:700;position:absolute;right:6px;top:50%;transform:translateY(-50%)}::ng-deep .mdc-checkbox__background{border-color:var(--cl_footer-text)!important}.address_hotels .text--small{font-weight:600}.cs_footer_item form .form-control::placeholder{opacity:.5}.cs_footer_item form div{padding:10px 0}.cs_footer_item form div.checkbox-element span{margin-left:5px!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: MatCheckboxModule }, { kind: "component", type: i4$1.MatCheckbox, selector: "mat-checkbox", inputs: ["aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "disableRipple", "tabIndex", "color", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { kind: "directive", type: BabylonScrollUpDirective, selector: "[scrollUp]" }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: FormsModule }, { kind: "component", type: BabylonDynamicHeadingComponent, selector: "lib-babylon-dynamic-heading", inputs: ["tag", "wrapper", "cssClass", "content", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
16480
|
+
}
|
|
16481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonStaticFooterV4Component, decorators: [{
|
|
16482
|
+
type: Component,
|
|
16483
|
+
args: [{ selector: 'lib-babylon-static-footer-v4', standalone: true, imports: [
|
|
16484
|
+
CommonModule,
|
|
16485
|
+
MatCheckboxModule,
|
|
16486
|
+
BabylonDataBackgroundDirective,
|
|
16487
|
+
BabylonScrollUpDirective,
|
|
16488
|
+
BabylonLinkTypeDirective,
|
|
16489
|
+
ReactiveFormsModule,
|
|
16490
|
+
FormsModule,
|
|
16491
|
+
BabylonDynamicHeadingComponent,
|
|
16492
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<!-- La foto es opcional -->\n<footer class=\"babylon__footer cs_bg_filed\">\n <div class=\"cs_footer_main\">\n <div class=\"container-fluid cs_plr_100\">\n <div class=\"cs_footer_grid_4\">\n @if (address?.length) {\n @for (add of address; track $index) {\n <div class=\"cs_footer_grid_item\">\n <div class=\"cs_footer_item\">\n <lib-babylon-dynamic-heading\n [tag]=\"tags?.title || 'h5'\"\n cssClass=\"cs_widget_title title--smaller\"\n [color]=\"textColors?.title\"\n [content]=\"add.name\"\n wrapper=\"span\"\n ></lib-babylon-dynamic-heading>\n <div class=\"cs_text_widget\">\n <a\n [attr.aria-label]=\"add.address\"\n [href]=\"add.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none': !add.url,\n }\"\n >\n @if (add.address) {\n {{ add.address }} <br />\n }\n @if (add.cp && add.city) {\n {{ add.cp }} {{ add.city }}\n <br />\n }\n @if (add.province && add.country) {\n {{ add.province }}\n {{ add.country }}\n }\n </a>\n <br />\n @if (add.phone) {\n <a\n class=\"phone\"\n [attr.aria-label]=\"add.phone\"\n [href]=\"'tel:' + add.phone\"\n linkType=\"external\"\n >\n {{ add.phone }}\n </a>\n <br />\n }\n @if (add.email) {\n <a\n [attr.aria-label]=\"add.email\"\n [href]=\"'mailto:' + add.email\"\n linkType=\"external\"\n >\n {{ add.email }}\n </a>\n <br />\n }\n </div>\n </div>\n </div>\n }\n }\n @if (addressHotels?.length) {\n @for (address of addressHotels; track $index) {\n <div class=\"cs_footer_grid_item address_hotels\">\n <div class=\"cs_footer_item\">\n @if (address.name) {\n <lib-babylon-dynamic-heading\n [tag]=\"tags?.title || 'h5'\"\n cssClass=\"cs_widget_title title--smaller\"\n [color]=\"textColors?.title\"\n [content]=\"address.name\"\n wrapper=\"span\"\n ></lib-babylon-dynamic-heading>\n }\n\n <div class=\"cs_text_widget\">\n @if (address.full_address) {\n <a\n [attr.aria-label]=\"\n address.full_address\n \"\n [href]=\"address.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none': !address.url,\n }\"\n [innerHTML]=\"address.full_address\"\n >\n </a>\n <br />\n } @else {\n @if (address.address) {\n <a\n [attr.aria-label]=\"\n address.address\n \"\n [href]=\"address.url || '#'\"\n linkType=\"external\"\n [ngClass]=\"{\n 'pointer-none':\n !address.url,\n }\"\n >\n {{ address.address }}\n <br />\n {{ address.cp }}\n {{ address.city }}\n {{ address.province }}\n <br />\n {{ address.country }}\n </a>\n <br />\n }\n }\n @if (address.phone) {\n <a\n class=\"phone\"\n [attr.aria-label]=\"address.phone\"\n [href]=\"'tel:' + address.phone\"\n linkType=\"external\"\n >\n {{ address.phone }}\n </a>\n <br />\n }\n @if (address.email) {\n <a\n [attr.aria-label]=\"address.email\"\n [href]=\"'mailto:' + address.email\"\n linkType=\"external\"\n >\n {{ address.email }}\n </a>\n <br />\n }\n </div>\n </div>\n </div>\n }\n }\n\n @if (texts?.newsletterTitle) {\n <div class=\"cs_footer_grid_item\">\n <div class=\"cs_footer_item\">\n <div id=\"message-newsletter\"></div>\n @if (texts?.newsletterTitle) {\n <form\n name=\"newsletter_form\"\n id=\"newsletter_form\"\n [formGroup]=\"form\"\n >\n <div class=\"form-group\">\n <input\n type=\"text\"\n class=\"form-control\"\n formControlName=\"input\"\n [placeholder]=\"\n texts?.newsletterTitle\n \"\n (input)=\"inputChange($event)\"\n (blur)=\"validateInput()\"\n />\n <button\n name=\"submit\"\n type=\"submit\"\n id=\"submit-newsletter\"\n (click)=\"submit()\"\n [ngClass]=\"{\n 'pointers-none': !form.valid,\n }\"\n >\n <i\n class=\"babylon-arrow-right btn-send\"\n ></i>\n </button>\n </div>\n <div class=\"checkbox-element\">\n <mat-checkbox\n class=\"formcontrol\"\n formControlName=\"checkbox\"\n ></mat-checkbox>\n @if (texts?.conditions) {\n <span\n class=\"text--small m-0 pt-2\"\n [innerHTML]=\"texts?.conditions\"\n ></span>\n }\n </div>\n </form>\n }\n </div>\n </div>\n }\n </div>\n </div>\n </div>\n <div class=\"cs_bottom_footer_wrap\">\n <div class=\"container-fluid cs_plr_100\">\n <div class=\"cs_bottom_footer position-relative\">\n <span class=\"cs_scrollup cs_center\" scrollUp>\n <svg\n width=\"15\"\n height=\"7\"\n viewBox=\"0 0 15 7\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M15 6.18793L14.1169 7L7.93687 1.31723C7.81958 1.20941 7.66053 1.14885 7.49468 1.14885C7.32884 1.14885 7.16978 1.20941 7.0525 1.31723L0.884376 6.99022L0 6.177L6.16812 0.505163C6.51998 0.181708 6.99715 0 7.49468 0C7.99222 0 8.46938 0.181708 8.82125 0.505163L15 6.18793Z\"\n fill=\"currentColor\"\n />\n </svg>\n <span class=\"cs_scrollup_bg_dotted cs_accent_color\">\n <svg\n width=\"56\"\n height=\"56\"\n viewBox=\"0 0 56 56\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <circle\n cx=\"28\"\n cy=\"28\"\n r=\"27.5\"\n stroke=\"currentColor\"\n stroke-dasharray=\"5 5\"\n />\n </svg>\n </span>\n </span>\n </div>\n </div>\n </div>\n</footer>\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_background_dark-opacity-v2: #1326398b;--cl_background_body-transparent: #ffffffe7;--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;--cl_text-disable: #888;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--padding-bottom-slider: 0px;--lh_pretitle-slider: 1.2;--lh_title-slider: 1.2;--cl_header-bg-nosticky: #0000001a;--cl_header-text-nosticky: #fff;--cl_header-bg-sticky: #eee;--cl_header-text-sticky: #19314b;--cl_header-bg-mobile: #b6b6b6;--cl_headerBottom-bg-mobile: #b6b6b6;--cl_header-text-mobile: #19314b;--cl_menu-modal-bg: #19314b;--cl_menu-modal-items: #978667;--cl_menu-modal-items-hover: #fff;--cl_menu-modal-text: #fff;--cl_menu-modal-text-hover: #fff;--ls_menu-modal-items: 1px;--w_menu-modal-items: 300;--hg_menu-img-height: 15rem;--cl_submenu-bg: #19314b;--cl_submenu-text: #fff;--cl_submenu-hover: #978667;--w_btn: 400;--size_btn: 14px;--size_link: 14px;--ls_link: 1px;--ls_btn: 1px;--upper_btn: uppercase;--upper_link: uppercase;--font-btn: \"Poppins\", Helvetica, sans-serif;--font-link: \"Poppins\", Helvetica, sans-serif;--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: #fff;--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-bg-logos: #f8f7f3;--cl_footer-scroll: #978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-width: 1px;--dropdown-radius: 20px;--cl_background_dropdown: #fdfbf8;--cl_border-dropdown: #d9e1e6;--font-size-engine-text: 14px;--cl_engine-text: #19314b;--cl_engine-bg-nosticky: #ffffffcf;--cl_engine-text-nosticky: #19314b;--cl_engine-bg-sticky: #ffffff00;--cl_engine-text-sticky: #19314b;--cl_engine-bg-modal: #19314bbf;--cl_engine-input-bg: #ebebeb;--cl_engine-input-bg-select: #ebebeb;--cl_dropdown: #19314b;--cl_dropdown-text: #5a5a5a;--cl_dropdown-hover: #19314b;--cl_newsletter-input-background: #d1d1d1;--cl_newsletter-input-text: #5a5a5a;--cl_error: #ff7173;--cl_desde: #bcbbc3;--cl_price: #19314b;--cl_badget: #ff8874;--cl_badget-text: #fff;--alg-service-room-detail: center;--cl_alert-text: #19314b;--cl_alert-text-error: #fff;--cl_alert-background: #fff;--cl_alert-background-error: rgb(230, 92, 92);--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: var(--cl_corp);--mdc-checkbox-selected-hover-icon-color: var(--cl_corp);--mdc-checkbox-selected-icon-color: var(--cl_corp);--mdc-checkbox-selected-pressed-icon-color: var(--cl_corp);--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: var(--cl_corp);--mdc-checkbox-selected-hover-state-layer-color: var(--cl_corp);--mdc-checkbox-selected-pressed-state-layer-color: var(--cl_corp);--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--primary: #4a4a49;--cream: #f9f8f5;--white: #ffffff;--black: #000000;--whatsapp: #24cc63;--logo: #616161;--grey: #dcdcdc;--darkgrey: #1e1e1e;--instagram: #61bdff;--facebook: #3782f4;--twitter: #4a4a49;--youtube: #d9464b;--tripadvisor: #34e0a1;--booking: #0c3b7c;--silver: #c0bebe;--gold: #ffca64;--platinum: #b5d9e2}.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;--type-align: center;--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-width: 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}@media (min-width: 1280px){.order-custom-xl-xxl-1{order:1}.order-custom-xl-xxl-2{order:2}}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width: 540px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width: 768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width: 1025px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width: 1280px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}@media (min-width: 1366px){.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.m-xxl-auto{margin:auto!important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto!important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto!important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto!important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto!important}}@media (min-width: 1680px){.flex-xxxl-row{flex-direction:row!important}.flex-xxxl-column{flex-direction:column!important}.flex-xxxl-row-reverse{flex-direction:row-reverse!important}.flex-xxxl-column-reverse{flex-direction:column-reverse!important}.flex-xxxl-wrap{flex-wrap:wrap!important}.flex-xxxl-nowrap{flex-wrap:nowrap!important}.flex-xxxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxxl-fill{flex:1 1 auto!important}.flex-xxxl-grow-0{flex-grow:0!important}.flex-xxxl-grow-1{flex-grow:1!important}.flex-xxxl-shrink-0{flex-shrink:0!important}.flex-xxxl-shrink-1{flex-shrink:1!important}.justify-content-xxxl-start{justify-content:flex-start!important}.justify-content-xxxl-end{justify-content:flex-end!important}.justify-content-xxxl-center{justify-content:center!important}.justify-content-xxxl-between{justify-content:space-between!important}.justify-content-xxxl-around{justify-content:space-around!important}.align-items-xxxl-start{align-items:flex-start!important}.align-items-xxxl-end{align-items:flex-end!important}.align-items-xxxl-center{align-items:center!important}.align-items-xxxl-baseline{align-items:baseline!important}.align-items-xxxl-stretch{align-items:stretch!important}.align-content-xxxl-start{align-content:flex-start!important}.align-content-xxxl-end{align-content:flex-end!important}.align-content-xxxl-center{align-content:center!important}.align-content-xxxl-between{align-content:space-between!important}.align-content-xxxl-around{align-content:space-around!important}.align-content-xxxl-stretch{align-content:stretch!important}.align-self-xxxl-auto{align-self:auto!important}.align-self-xxxl-start{align-self:flex-start!important}.align-self-xxxl-end{align-self:flex-end!important}.align-self-xxxl-center{align-self:center!important}.align-self-xxxl-baseline{align-self:baseline!important}.align-self-xxxl-stretch{align-self:stretch!important}.m-xxxl-auto{margin:auto!important}.mt-xxxl-auto,.my-xxxl-auto{margin-top:auto!important}.mr-xxxl-auto,.mx-xxxl-auto{margin-right:auto!important}.mb-xxxl-auto,.my-xxxl-auto{margin-bottom:auto!important}.ml-xxxl-auto,.mx-xxxl-auto{margin-left:auto!important}}@media (min-width: 1921px){.flex-xxxxl-row{flex-direction:row!important}.flex-xxxxl-column{flex-direction:column!important}.flex-xxxxl-row-reverse{flex-direction:row-reverse!important}.flex-xxxxl-column-reverse{flex-direction:column-reverse!important}.flex-xxxxl-wrap{flex-wrap:wrap!important}.flex-xxxxl-nowrap{flex-wrap:nowrap!important}.flex-xxxxl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xxxxl-fill{flex:1 1 auto!important}.flex-xxxxl-grow-0{flex-grow:0!important}.flex-xxxxl-grow-1{flex-grow:1!important}.flex-xxxxl-shrink-0{flex-shrink:0!important}.flex-xxxxl-shrink-1{flex-shrink:1!important}.justify-content-xxxxl-start{justify-content:flex-start!important}.justify-content-xxxxl-end{justify-content:flex-end!important}.justify-content-xxxxl-center{justify-content:center!important}.justify-content-xxxxl-between{justify-content:space-between!important}.justify-content-xxxxl-around{justify-content:space-around!important}.align-items-xxxxl-start{align-items:flex-start!important}.align-items-xxxxl-end{align-items:flex-end!important}.align-items-xxxxl-center{align-items:center!important}.align-items-xxxxl-baseline{align-items:baseline!important}.align-items-xxxxl-stretch{align-items:stretch!important}.align-content-xxxxl-start{align-content:flex-start!important}.align-content-xxxxl-end{align-content:flex-end!important}.align-content-xxxxl-center{align-content:center!important}.align-content-xxxxl-between{align-content:space-between!important}.align-content-xxxxl-around{align-content:space-around!important}.align-content-xxxxl-stretch{align-content:stretch!important}.align-self-xxxxl-auto{align-self:auto!important}.align-self-xxxxl-start{align-self:flex-start!important}.align-self-xxxxl-end{align-self:flex-end!important}.align-self-xxxxl-center{align-self:center!important}.align-self-xxxxl-baseline{align-self:baseline!important}.align-self-xxxxl-stretch{align-self:stretch!important}.m-xxxxl-auto{margin:auto!important}.mt-xxxxl-auto,.my-xxxxl-auto{margin-top:auto!important}.mr-xxxxl-auto,.mx-xxxxl-auto{margin-right:auto!important}.mb-xxxxl-auto,.my-xxxxl-auto{margin-bottom:auto!important}.ml-xxxxl-auto,.mx-xxxxl-auto{margin-left:auto!important}}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.mt--150{margin-top:150px!important}.mb--150{margin-bottom:150px!important}.pt--150{padding-top:150px}.pb--150{padding-bottom:150px}.mblock--150{margin-block:150px}.pblock--150{padding-block:150px}.mt--180{margin-top:180px!important}.mb--180{margin-bottom:180px!important}.pt--180{padding-top:180px}.pb--180{padding-bottom:180px}.mblock--180{margin-block:180px}.pblock--180{padding-block:180px}@keyframes move-right{0%{right:30px}50%{right:20px}to{right:30px}}.babylon__footer{background-color:var(--cl_footer-bg);color:var(--cl_footer-text)}.babylon__footer a{color:var(--cl_footer-text);text-decoration:none;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.babylon__footer a:hover{color:var(--cl_footer-text-hover);text-decoration:underline}@media (max-width: 767px){.babylon__footer{padding-bottom:60px}}:host ::ng-deep .cs_widget_title{margin-bottom:47px}@media (max-width: 1024px){:host ::ng-deep .cs_widget_title{margin-bottom:30px}}:host ::ng-deep .cs_widget_title span{display:inline-block;position:relative;padding-right:20px;color:var(--cl_footer-text)}:host ::ng-deep .cs_widget_title span:before{content:\"\";position:absolute;height:1px;width:50px;background-color:var(--cl_footer-text);left:100%;top:54%;transition:all .3s ease}@media (max-width: 539px){:host ::ng-deep .cs_widget_title span{display:flex;flex-direction:column;align-items:center;text-align:center;padding-right:0}:host ::ng-deep .cs_widget_title span:before{position:relative;left:0;top:40px;width:40px}}.cs_menu_widget{padding:0;margin:0;list-style:none}.cs_menu_widget li:not(:last-child){margin-bottom:8px}.cs_menu_widget+.cs_social_btns{margin-top:20px;font-size:20px}.cs_menu_widget+.cs_social_btns a{text-decoration:none!important}.cs_social_btns{display:flex;flex-wrap:wrap;font-size:13px;gap:10px}.cs_social_btns a{height:30px;width:30px;border-radius:50%;display:flex}.cs_social_btns a:hover{transform:scale(1.2)}.cs_social_btns a:hover svg{fill:var(--cl_footer-text)}@media (max-width: 539px){.cs_social_btns{justify-content:center}}.cs_bottom_footer_wrap{background-color:var(--cl_footer-bg-bottom)}.cs_bottom_footer_wrap .container-fluid{overflow:visible}.cs_bottom_footer{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding:30px 0;gap:2px 15px}@media (max-width: 767px){.cs_bottom_footer{flex-direction:column;padding:40px 0 20px}}.cs_footer_logo{display:flex;align-items:center;position:relative;left:85%}.cs_footer_logo .footer-logo-img{max-width:200px;height:auto}@media (max-width: 767px){.cs_footer_logo{position:relative;margin:20px 0}}@media (max-width: 767px){.cs_footer_logo{left:auto;justify-content:center}}.cs_copyright a{color:var(--cl_footer-text);background-repeat:no-repeat;background-image:linear-gradient(90deg,currentColor 0,currentColor 100%);transition:background-size .6s cubic-bezier(.49,.49,.08,1),color .27s ease-out;background-position:100% calc(100% + -0px);background-size:0 2px}.cs_copyright a:hover{background-size:100% 2px;background-position:0 calc(100% + -0px)}.cs_fullscreen_footer_in{height:100px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px 30px}.cs_footer_main{padding:100px 0}@media (max-width: 1024px){.cs_footer_main{padding:80px 0}}.cs_footer_grid_4{display:flex;gap:30px 70px}@media (max-width: 1024px){.cs_footer_grid_4{gap:30px 40px}}@media (max-width: 1279px){.cs_footer_grid_4{gap:30px 24px}}@media (max-width: 1024px){.cs_footer_grid_4{display:grid;gap:55px 24px;grid-template-columns:repeat(2,1fr);padding:0 40px}}@media (max-width: 539px){.cs_footer_grid_4{gap:55px 24px;grid-template-columns:repeat(1,1fr);padding:0}}.cs_footer_grid_4 .cs_footer_grid_item{flex:1}.cs_footer_grid_4 .cs_footer_grid_item:first-child{flex:1.4}.cs_footer_grid_4 .cs_footer_grid_item:nth-child(2){flex:1.4}.cs_footer_grid_4 .cs_footer_grid_item:last-child{flex:2.1}.cs_footer_grid_4 .cs_footer_grid_item.address_hotels{flex:1.7}@media (max-width: 539px){.cs_footer_grid_4 .cs_footer_grid_item{text-align:center}}.cs_footer_grid_4.cs_type_1{gap:30px 10%}@media (max-width: 1679px){.cs_footer_grid_4.cs_type_1{gap:30px 6%}}@media (max-width: 1024px){.cs_footer_grid_4.cs_type_1{gap:30px 40px}}@media (max-width: 1279px){.cs_footer_grid_4.cs_type_1{gap:30px 24px}}@media (max-width: 1024px){.cs_footer_grid_4.cs_type_1{gap:55px 24px}}@media (max-width: 539px){.cs_footer_grid_4.cs_type_1{gap:55px 24px}}.cs_footer_links{display:flex;flex-wrap:wrap}.cs_footer_links li:not(:last-child):after{content:\"|\";margin:0 10px;position:relative;top:-1px}.cs_footer_map{height:260px}.cs_footer_map iframe{height:100%;display:block;border:none;width:100%;filter:grayscale(100%) invert(95%) contrast(140%);outline:none}.cs_scrollup{position:absolute;left:50%;transform:translate(-50%);height:46px;width:46px;top:-23px;background-color:var(--cl_footer-scroll)!important;border-radius:50%;cursor:pointer}.cs_scrollup>svg{position:relative;z-index:2}.cs_scrollup>svg path{color:var(--cl_footer-bg)!important}.cs_scrollup .cs_scrollup_bg_dotted{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);animation:rotate 15s linear infinite;animation-play-state:paused}.cs_scrollup:before{content:\"\";position:absolute;height:100%;width:100%;left:0;top:0;border-radius:50%;background-color:var(--cl_footer-scroll);opacity:.5}.cs_scrollup:hover .cs_scrollup_bg_dotted{animation-play-state:initial}.cs_scrollup.cs_type_1{top:20px}@media (max-width: 1024px){.cs_scrollup.cs_type_1{top:-23px}}@keyframes rotate{0%{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}a{text-decoration:none!important}#newsletter_form h5{margin:0 0 25px}@media (max-width: 767px){#newsletter_form h5{margin:0 0 15px}}#newsletter_form .form-group{position:relative}#newsletter_form input[type=email]{border:0;height:45px;border-radius:3px;padding-left:15px;background-color:var(--cl_footer-text);color:var(--cl_footer-text-hover);width:100%}#newsletter_form input[type=email]::placeholder,#newsletter_form input[type=email]::-webkit-input-placeholder,#newsletter_form input[type=email]::-moz-placeholder,#newsletter_form input[type=email]:-ms-input-placeholder,#newsletter_form input[type=email]::-ms-input-placeholder{color:red!important;opacity:1;font-size:16px}#newsletter_form input[type=email]:focus{border:0;box-shadow:none}#newsletter_form button[type=submit]{position:absolute;right:5px;color:var(--cl_footer-text);font-size:22px;font-size:1.375rem;top:-2px;border:0;opacity:.6;height:100%;cursor:pointer;background-color:transparent;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;transition:all .3s ease-in-out;outline:none}#newsletter_form button[type=submit]:hover{opacity:1}#newsletter_form .checkbox-element{display:flex!important;align-items:center!important;cursor:pointer}#newsletter_form .checkbox-element .text--small{color:var(--cl_footer-text)!important;padding:0!important}#newsletter_form .checkbox-element .text--small::ng-deep p{color:var(--cl_footer-text)!important;margin:0}#newsletter_form .checkbox-element .text--small::ng-deep a{color:var(--cl_footer-text)!important}#newsletter_form .checkbox-element .text--small::ng-deep a:hover{color:var(--cl_footer-text-hover)!important}#newsletter_form .mdc-checkbox__native-control{color:var(--cl_footer-text)!important}#newsletter_form .btn-send{color:var(--cl_corp)!important;font-size:16px;font-weight:700;position:absolute;right:6px;top:50%;transform:translateY(-50%)}::ng-deep .mdc-checkbox__background{border-color:var(--cl_footer-text)!important}.address_hotels .text--small{font-weight:600}.cs_footer_item form .form-control::placeholder{opacity:.5}.cs_footer_item form div{padding:10px 0}.cs_footer_item form div.checkbox-element span{margin-left:5px!important}\n"] }]
|
|
16493
|
+
}], ctorParameters: () => [{ type: i1$3.DomSanitizer }, { type: i0.ChangeDetectorRef }, { type: i1$4.FormBuilder }], propDecorators: { address: [{
|
|
16494
|
+
type: Input
|
|
16495
|
+
}], addressHotels: [{
|
|
16496
|
+
type: Input
|
|
16497
|
+
}], texts: [{
|
|
16498
|
+
type: Input
|
|
16499
|
+
}], buttons: [{
|
|
16500
|
+
type: Input
|
|
16501
|
+
}], tags: [{
|
|
16502
|
+
type: Input
|
|
16503
|
+
}], textColors: [{
|
|
16504
|
+
type: Input
|
|
16505
|
+
}], submitForm: [{
|
|
16506
|
+
type: Output
|
|
16507
|
+
}] } });
|
|
16508
|
+
|
|
16382
16509
|
class BabylonSubmenuHotelComponent {
|
|
16383
16510
|
constructor() {
|
|
16384
16511
|
this.headerFixed = false;
|
|
@@ -18191,12 +18318,15 @@ var componentData$1 = {
|
|
|
18191
18318
|
|
|
18192
18319
|
const defaultData$1 = componentData$1;
|
|
18193
18320
|
class C4FoLinkSvgComponent {
|
|
18321
|
+
encodeText(text) {
|
|
18322
|
+
return text ? encodeURIComponent(text) : '';
|
|
18323
|
+
}
|
|
18194
18324
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C4FoLinkSvgComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18195
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C4FoLinkSvgComponent, isStandalone: true, selector: "ces-c4-fo-link-svg", inputs: { texts: "texts", multimedia: "multimedia", footerLinks: "footerLinks", socialMedia: "socialMedia" }, ngImport: i0, template: "<section class=\"mdl-f01\">\n <div class=\"mdl-container\">\n <div class=\"m-content\">\n @if (footerLinks?.length) {\n <div class=\"m-left\">\n <ul>\n @for (item of footerLinks?.slice(0, 5); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n </ul>\n <ul>\n @for (item of footerLinks?.slice(5, 9); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n\n @if (socialMedia?.length) {\n <li class=\"m-rrss\">\n @for (\n social of socialMedia;\n track social.icon\n ) {\n <a\n [href]=\"social?.url\"\n [linkType]=\"'external'\"\n >\n <img [src]=\"social?.icon\" />\n </a>\n }\n </li>\n }\n </ul>\n </div>\n }\n @if (multimedia?.logo?.length) {\n <div class=\"m-right\">\n <img\n [src]=\"multimedia?.logo?.[0]?.img?.src\"\n [alt]=\"multimedia?.logo?.[0]?.img?.alt\"\n />\n </div>\n }\n </div>\n <div class=\"m-legal\">\n <ul>\n @for (item of footerLinks?.slice(9); track $index) {\n @if (item) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n }\n </ul>\n </div>\n </div>\n</section>\n", styles: ["@charset \"UTF-8\";.mdl-f01{padding:11.7rem 7.2rem 10.8rem}.mdl-f01 .mdl-container .m-content{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;border-bottom:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:space-between;align-items:center}.mdl-f01 .mdl-container .m-content .m-left{display:flex;gap:13rem}.mdl-f01 .mdl-container .m-content .m-left ul{list-style:none}.mdl-f01 .mdl-container .m-content .m-left ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul li{margin-bottom:2.2rem;padding-left:0}.mdl-f01 .mdl-container .m-content .m-left ul li a{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d}.mdl-f01 .mdl-container .m-content .m-left ul li:before{display:none}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss{display:flex;gap:1.5rem}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss img{width:30px;height:30px}.mdl-f01 .mdl-container .m-content .m-right img{width:250px;height:auto}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2.2rem}.mdl-f01 .mdl-container .m-legal ul{display:flex}.mdl-f01 .mdl-container .m-legal ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-legal ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-legal ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-legal ul li{padding-left:0;border-right:.1rem solid #b7985d;padding-right:1rem;margin-right:1rem}.mdl-f01 .mdl-container .m-legal ul li a{font-family:ptsans,sans-serif;font-weight:400;font-size:1.4rem;line-height:100%}@media (max-width: 540px){.mdl-f01 .mdl-container .m-legal ul li a{line-height:2.8rem}}.mdl-f01 .mdl-container .m-legal ul li a{color:#b7985d}.mdl-f01 .mdl-container .m-legal ul li:last-child{border:0;padding-right:0;margin-right:0}.mdl-f01 .mdl-container .m-legal ul li:before{display:none}@media (max-width: 1024px){.mdl-f01 .mdl-container .m-content{align-items:flex-start}.mdl-f01 .mdl-container .m-content .m-left{flex-direction:column;gap:0}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0;width:100%;display:flex;justify-content:center}}@media (max-width: 770px){.mdl-f01{padding:11.7rem 4rem 10.8rem}.mdl-f01 .mdl-container .m-content{flex-direction:column;gap:2rem}.mdl-f01 .mdl-container .m-content .m-right{width:100%;display:flex;justify-content:center}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2rem;width:100%;display:flex;justify-content:left}.mdl-f01 .mdl-container .m-legal ul{flex-direction:column}.mdl-f01 .mdl-container .m-legal ul li{border:0;line-height:2.8rem}.mdl-f01 .mdl-container .m-legal ul li:first-child{margin-bottom:1.2rem}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
18325
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: C4FoLinkSvgComponent, isStandalone: true, selector: "ces-c4-fo-link-svg", inputs: { texts: "texts", multimedia: "multimedia", footerLinks: "footerLinks", socialMedia: "socialMedia" }, ngImport: i0, template: "<section class=\"mdl-f01\">\n <div class=\"mdl-container\">\n <div class=\"m-address\">\n @if (texts?.addresstitle) {\n <div class=\"m-title\">{{ texts?.addresstitle }}</div>\n }\n @if (texts?.address) {\n <a\n [href]=\"\n 'https://www.google.com/maps/search/?api=1&query=' +\n encodeText(texts?.address)\n \"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n ><div class=\"m-text\" [innerHTML]=\"texts?.address\"></div\n ></a>\n }\n </div>\n <div class=\"m-content\">\n @if (footerLinks?.length) {\n <div class=\"m-left\">\n <ul>\n @for (item of footerLinks?.slice(0, 5); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n </ul>\n <ul>\n @for (item of footerLinks?.slice(5, 9); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n\n @if (socialMedia?.length) {\n <li class=\"m-rrss\">\n @for (\n social of socialMedia;\n track social.icon\n ) {\n <a\n [href]=\"social?.url\"\n [linkType]=\"'external'\"\n >\n <img [src]=\"social?.icon\" />\n </a>\n }\n </li>\n }\n </ul>\n </div>\n }\n @if (multimedia?.logo?.length) {\n <div class=\"m-right\">\n <img\n [src]=\"multimedia?.logo?.[0]?.img?.src\"\n [alt]=\"multimedia?.logo?.[0]?.img?.alt\"\n />\n </div>\n }\n </div>\n <div class=\"m-legal\">\n <ul>\n @for (item of footerLinks?.slice(9); track $index) {\n @if (item) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n }\n </ul>\n </div>\n </div>\n</section>\n", styles: ["@charset \"UTF-8\";.mdl-f01{padding:11.7rem 7.2rem 10.8rem}.mdl-f01 .mdl-container .m-address{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:end;align-items:flex-end;flex-direction:column}.mdl-f01 .mdl-container .m-address .m-title>*,.mdl-f01 .mdl-container .m-address .m-text>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-address .m-title:hover>*,.mdl-f01 .mdl-container .m-address .m-text:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-address .m-title:hover>*:hover,.mdl-f01 .mdl-container .m-address .m-text:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-address .m-title,.mdl-f01 .mdl-container .m-address .m-text{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d;line-height:1.3;text-align:end}@media (max-width: 768px){.mdl-f01 .mdl-container .m-address{justify-content:center;align-items:center}.mdl-f01 .mdl-container .m-address .m-title,.mdl-f01 .mdl-container .m-address .m-text{text-align:center;font-size:1.5rem}}.mdl-f01 .mdl-container .m-content{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;border-bottom:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:space-between;align-items:center}.mdl-f01 .mdl-container .m-content .m-left{display:flex;gap:13rem}.mdl-f01 .mdl-container .m-content .m-left ul{list-style:none}.mdl-f01 .mdl-container .m-content .m-left ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul li{margin-bottom:2.2rem;padding-left:0}.mdl-f01 .mdl-container .m-content .m-left ul li a{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d}.mdl-f01 .mdl-container .m-content .m-left ul li:before{display:none}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss{display:flex;gap:1.5rem}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss img{width:30px;height:30px}.mdl-f01 .mdl-container .m-content .m-right img{width:250px;height:auto}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2.2rem}.mdl-f01 .mdl-container .m-legal ul{display:flex}.mdl-f01 .mdl-container .m-legal ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-legal ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-legal ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-legal ul li{padding-left:0;border-right:.1rem solid #b7985d;padding-right:1rem;margin-right:1rem}.mdl-f01 .mdl-container .m-legal ul li a{font-family:ptsans,sans-serif;font-weight:400;font-size:1.4rem;line-height:100%}@media (max-width: 540px){.mdl-f01 .mdl-container .m-legal ul li a{line-height:2.8rem}}.mdl-f01 .mdl-container .m-legal ul li a{color:#b7985d}.mdl-f01 .mdl-container .m-legal ul li:last-child{border:0;padding-right:0;margin-right:0}.mdl-f01 .mdl-container .m-legal ul li:before{display:none}@media (max-width: 1024px){.mdl-f01 .mdl-container .m-content{align-items:flex-start}.mdl-f01 .mdl-container .m-content .m-left{flex-direction:column;gap:0}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0;width:100%;display:flex;justify-content:center}}@media (max-width: 770px){.mdl-f01{padding:11.7rem 4rem 10.8rem}.mdl-f01 .mdl-container .m-content{flex-direction:column;gap:2rem}.mdl-f01 .mdl-container .m-content .m-right{width:100%;display:flex;justify-content:center}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2rem;width:100%;display:flex;justify-content:left}.mdl-f01 .mdl-container .m-legal ul{flex-direction:column}.mdl-f01 .mdl-container .m-legal ul li{border:0;line-height:2.8rem}.mdl-f01 .mdl-container .m-legal ul li:first-child{margin-bottom:1.2rem}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href", "modalClick", "clickPopup", "disablePointerNone"], outputs: ["anchorClicked"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
18196
18326
|
}
|
|
18197
18327
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: C4FoLinkSvgComponent, decorators: [{
|
|
18198
18328
|
type: Component,
|
|
18199
|
-
args: [{ selector: 'ces-c4-fo-link-svg', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective], encapsulation: ViewEncapsulation.None, template: "<section class=\"mdl-f01\">\n <div class=\"mdl-container\">\n <div class=\"m-content\">\n @if (footerLinks?.length) {\n <div class=\"m-left\">\n <ul>\n @for (item of footerLinks?.slice(0, 5); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n </ul>\n <ul>\n @for (item of footerLinks?.slice(5, 9); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n\n @if (socialMedia?.length) {\n <li class=\"m-rrss\">\n @for (\n social of socialMedia;\n track social.icon\n ) {\n <a\n [href]=\"social?.url\"\n [linkType]=\"'external'\"\n >\n <img [src]=\"social?.icon\" />\n </a>\n }\n </li>\n }\n </ul>\n </div>\n }\n @if (multimedia?.logo?.length) {\n <div class=\"m-right\">\n <img\n [src]=\"multimedia?.logo?.[0]?.img?.src\"\n [alt]=\"multimedia?.logo?.[0]?.img?.alt\"\n />\n </div>\n }\n </div>\n <div class=\"m-legal\">\n <ul>\n @for (item of footerLinks?.slice(9); track $index) {\n @if (item) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n }\n </ul>\n </div>\n </div>\n</section>\n", styles: ["@charset \"UTF-8\";.mdl-f01{padding:11.7rem 7.2rem 10.8rem}.mdl-f01 .mdl-container .m-content{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;border-bottom:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:space-between;align-items:center}.mdl-f01 .mdl-container .m-content .m-left{display:flex;gap:13rem}.mdl-f01 .mdl-container .m-content .m-left ul{list-style:none}.mdl-f01 .mdl-container .m-content .m-left ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul li{margin-bottom:2.2rem;padding-left:0}.mdl-f01 .mdl-container .m-content .m-left ul li a{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d}.mdl-f01 .mdl-container .m-content .m-left ul li:before{display:none}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss{display:flex;gap:1.5rem}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss img{width:30px;height:30px}.mdl-f01 .mdl-container .m-content .m-right img{width:250px;height:auto}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2.2rem}.mdl-f01 .mdl-container .m-legal ul{display:flex}.mdl-f01 .mdl-container .m-legal ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-legal ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-legal ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-legal ul li{padding-left:0;border-right:.1rem solid #b7985d;padding-right:1rem;margin-right:1rem}.mdl-f01 .mdl-container .m-legal ul li a{font-family:ptsans,sans-serif;font-weight:400;font-size:1.4rem;line-height:100%}@media (max-width: 540px){.mdl-f01 .mdl-container .m-legal ul li a{line-height:2.8rem}}.mdl-f01 .mdl-container .m-legal ul li a{color:#b7985d}.mdl-f01 .mdl-container .m-legal ul li:last-child{border:0;padding-right:0;margin-right:0}.mdl-f01 .mdl-container .m-legal ul li:before{display:none}@media (max-width: 1024px){.mdl-f01 .mdl-container .m-content{align-items:flex-start}.mdl-f01 .mdl-container .m-content .m-left{flex-direction:column;gap:0}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0;width:100%;display:flex;justify-content:center}}@media (max-width: 770px){.mdl-f01{padding:11.7rem 4rem 10.8rem}.mdl-f01 .mdl-container .m-content{flex-direction:column;gap:2rem}.mdl-f01 .mdl-container .m-content .m-right{width:100%;display:flex;justify-content:center}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2rem;width:100%;display:flex;justify-content:left}.mdl-f01 .mdl-container .m-legal ul{flex-direction:column}.mdl-f01 .mdl-container .m-legal ul li{border:0;line-height:2.8rem}.mdl-f01 .mdl-container .m-legal ul li:first-child{margin-bottom:1.2rem}}\n"] }]
|
|
18329
|
+
args: [{ selector: 'ces-c4-fo-link-svg', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective], encapsulation: ViewEncapsulation.None, template: "<section class=\"mdl-f01\">\n <div class=\"mdl-container\">\n <div class=\"m-address\">\n @if (texts?.addresstitle) {\n <div class=\"m-title\">{{ texts?.addresstitle }}</div>\n }\n @if (texts?.address) {\n <a\n [href]=\"\n 'https://www.google.com/maps/search/?api=1&query=' +\n encodeText(texts?.address)\n \"\n target=\"_blank\"\n rel=\"noopener noreferrer\"\n ><div class=\"m-text\" [innerHTML]=\"texts?.address\"></div\n ></a>\n }\n </div>\n <div class=\"m-content\">\n @if (footerLinks?.length) {\n <div class=\"m-left\">\n <ul>\n @for (item of footerLinks?.slice(0, 5); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n </ul>\n <ul>\n @for (item of footerLinks?.slice(5, 9); track $index) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n\n @if (socialMedia?.length) {\n <li class=\"m-rrss\">\n @for (\n social of socialMedia;\n track social.icon\n ) {\n <a\n [href]=\"social?.url\"\n [linkType]=\"'external'\"\n >\n <img [src]=\"social?.icon\" />\n </a>\n }\n </li>\n }\n </ul>\n </div>\n }\n @if (multimedia?.logo?.length) {\n <div class=\"m-right\">\n <img\n [src]=\"multimedia?.logo?.[0]?.img?.src\"\n [alt]=\"multimedia?.logo?.[0]?.img?.alt\"\n />\n </div>\n }\n </div>\n <div class=\"m-legal\">\n <ul>\n @for (item of footerLinks?.slice(9); track $index) {\n @if (item) {\n <li>\n <a\n [href]=\"item?.url + (item?.vars ?? '')\"\n [linkType]=\"item?.linkType\"\n >{{ item?.label }}</a\n >\n </li>\n }\n }\n </ul>\n </div>\n </div>\n</section>\n", styles: ["@charset \"UTF-8\";.mdl-f01{padding:11.7rem 7.2rem 10.8rem}.mdl-f01 .mdl-container .m-address{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:end;align-items:flex-end;flex-direction:column}.mdl-f01 .mdl-container .m-address .m-title>*,.mdl-f01 .mdl-container .m-address .m-text>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-address .m-title:hover>*,.mdl-f01 .mdl-container .m-address .m-text:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-address .m-title:hover>*:hover,.mdl-f01 .mdl-container .m-address .m-text:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-address .m-title,.mdl-f01 .mdl-container .m-address .m-text{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d;line-height:1.3;text-align:end}@media (max-width: 768px){.mdl-f01 .mdl-container .m-address{justify-content:center;align-items:center}.mdl-f01 .mdl-container .m-address .m-title,.mdl-f01 .mdl-container .m-address .m-text{text-align:center;font-size:1.5rem}}.mdl-f01 .mdl-container .m-content{width:calc(100% - 4.4rem);border-top:1px solid #b7985d;border-bottom:1px solid #b7985d;padding:5rem 2.2rem;display:flex;justify-content:space-between;align-items:center}.mdl-f01 .mdl-container .m-content .m-left{display:flex;gap:13rem}.mdl-f01 .mdl-container .m-content .m-left ul{list-style:none}.mdl-f01 .mdl-container .m-content .m-left ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul li{margin-bottom:2.2rem;padding-left:0}.mdl-f01 .mdl-container .m-content .m-left ul li a{font-family:josefinsans,sans-serif;font-weight:400;font-size:1.8rem;line-height:100%;color:#b7985d}.mdl-f01 .mdl-container .m-content .m-left ul li:before{display:none}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss{display:flex;gap:1.5rem}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-content .m-left ul .m-rrss img{width:30px;height:30px}.mdl-f01 .mdl-container .m-content .m-right img{width:250px;height:auto}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2.2rem}.mdl-f01 .mdl-container .m-legal ul{display:flex}.mdl-f01 .mdl-container .m-legal ul>*{transition:opacity .3s ease}.mdl-f01 .mdl-container .m-legal ul:hover>*{opacity:.6}.mdl-f01 .mdl-container .m-legal ul:hover>*:hover{opacity:1}.mdl-f01 .mdl-container .m-legal ul li{padding-left:0;border-right:.1rem solid #b7985d;padding-right:1rem;margin-right:1rem}.mdl-f01 .mdl-container .m-legal ul li a{font-family:ptsans,sans-serif;font-weight:400;font-size:1.4rem;line-height:100%}@media (max-width: 540px){.mdl-f01 .mdl-container .m-legal ul li a{line-height:2.8rem}}.mdl-f01 .mdl-container .m-legal ul li a{color:#b7985d}.mdl-f01 .mdl-container .m-legal ul li:last-child{border:0;padding-right:0;margin-right:0}.mdl-f01 .mdl-container .m-legal ul li:before{display:none}@media (max-width: 1024px){.mdl-f01 .mdl-container .m-content{align-items:flex-start}.mdl-f01 .mdl-container .m-content .m-left{flex-direction:column;gap:0}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0;width:100%;display:flex;justify-content:center}}@media (max-width: 770px){.mdl-f01{padding:11.7rem 4rem 10.8rem}.mdl-f01 .mdl-container .m-content{flex-direction:column;gap:2rem}.mdl-f01 .mdl-container .m-content .m-right{width:100%;display:flex;justify-content:center}.mdl-f01 .mdl-container .m-legal{padding:3rem 0 0 2rem;width:100%;display:flex;justify-content:left}.mdl-f01 .mdl-container .m-legal ul{flex-direction:column}.mdl-f01 .mdl-container .m-legal ul li{border:0;line-height:2.8rem}.mdl-f01 .mdl-container .m-legal ul li:first-child{margin-bottom:1.2rem}}\n"] }]
|
|
18200
18330
|
}], propDecorators: { texts: [{
|
|
18201
18331
|
type: Input
|
|
18202
18332
|
}], multimedia: [{
|
|
@@ -20980,5 +21110,5 @@ function deepClean(value, opts) {
|
|
|
20980
21110
|
* Generated bundle index. Do not edit.
|
|
20981
21111
|
*/
|
|
20982
21112
|
|
|
20983
|
-
export { Babylon404Component, BabylonActionBannerComponent, BabylonAdvantagesComponent, BabylonAdvantagesV2Component, BabylonAvC4ImgTextComponent, BabylonAvImgSocialComponent, BabylonAvTxtIcoComponent, BabylonBaImgTxtComponent, BabylonBaSliImgTxtComponent, BabylonBannerGalleryComponent, BabylonBannerInfoComponent, BabylonBannerNewsletterComponent, BabylonBlogDetailsComponent, BabylonBlogListComponent, BabylonBookingWidgetComponent, BabylonBreadcrumbComponent, BabylonBreadcrumbV2Component, BabylonC1TxtComponent, BabylonCleanPropsPipe, BabylonColorPickerComponent, BabylonComingsoonComponent, BabylonContactAddressComponent, BabylonContactFormComponent, BabylonContactFormV2Component, BabylonContactHowComponent, BabylonContactMapComponent, BabylonContainerTextL2Component, BabylonDynamicHeadingComponent, BabylonEngineComponent, BabylonEngineModalComponent, BabylonEngineModalV3Component, BabylonEngineWidgetModalComponent, BabylonExternalScriptComponent, BabylonFaqComponent, BabylonFaqV2Component, BabylonFeaturePillsComponent, BabylonFeaturePillsNumberComponent, BabylonFeaturesSliderComponent, BabylonFilterModalComponent, BabylonFloatingButtonsComponent, BabylonFoAddrContImgComponent, BabylonFoC3ImgTxtComponent, BabylonFoC3TxtSvgCtaComponent, BabylonFoLisC4TxtComponent, BabylonFoSliImgComponent, BabylonFooterContactComponent, BabylonFooterLinksComponent, BabylonFooterLogosComponent, BabylonFooterSocialComponent, BabylonFooterSocialI, BabylonGalleryComponent, BabylonGalleryV2Component, BabylonGlobalModalComponent, BabylonGrC2ImgComponent, BabylonGridGalleryComponent, BabylonGuestsPopupComponent, BabylonHeMeSvgTextCtaMotComponent, BabylonHeSvgListComponent, BabylonHeadIntroComponent, BabylonHeaderBookShowComponent, BabylonHeaderClearComponent, BabylonHeaderClearV2Component, BabylonHeaderMenuCenterComponent, BabylonHeaderMenuLogoCenterComponent, BabylonHeaderMenuShowComponent, BabylonHeaderMobileComponent, BabylonHotelsListComponent, BabylonHotelsSliderComponent, BabylonImgBannerComponent, BabylonInfo2ColImgComponent, BabylonInfo2imgBigComponent, BabylonInfo2imgComponent, BabylonInfo3imgComponent, BabylonInfo4imgComponent, BabylonInfoBigComponent, BabylonInfoBigV2Component, BabylonInfoBigV3Component, BabylonInfoCircleImgsComponent, BabylonInfoGridComponent, BabylonInfoGridI, BabylonInfoImgComponent, BabylonInfoImgSliderComponent, BabylonInfoImgV2Component, BabylonInfoIntroComponent, BabylonInfoShowImgComponent, BabylonInfoZigZagComponent, BabylonInfoZigZagCounterComponent, BabylonInfoZigzagV2Component, BabylonInfoZigzagV4Component, BabylonItemsGridComponent, BabylonLanguageModalComponent, BabylonLanguageModalV2Component, BabylonLanguageModalV3Component, BabylonLegalComponent, BabylonLisC2ImgVidComponent, BabylonLisC2TxtComponent, BabylonLisC4TxtIcoComponent, BabylonLisC4TxtImgPdfComponent, BabylonLisC5TxtImgSvgComponent, BabylonLisSvgTxtCtaComponent, BabylonListBoxInfoComponent, BabylonListC3ImgTxtComponent, BabylonListC6TxtComponent, BabylonListGridComponent, BabylonListGridI, BabylonListImgComponent, BabylonListImgInfoComponent, BabylonListImgV2Component, BabylonLoyaltyTableComponent, BabylonMapTxtComponent, BabylonModC2ImgTxtCtaComponent, BabylonModalMultipleMotorsComponent, BabylonModalService, BabylonNewsletterComponent, BabylonNewsletterI, BabylonNewsletterModalV2Component, BabylonOfferDetailComponent, BabylonOfferDetailV2Component, BabylonOfferPopupComponent, BabylonOfferPopupComponentV2, BabylonOfferPopupV3Component, BabylonOfferSliderComponent, BabylonOffersListComponent, BabylonOffersSliderComponent, BabylonPreloadComponent, BabylonPressListComponent, BabylonRoomDetailsComponent, BabylonRoomsColsComponent, BabylonRoomsGridComponent, BabylonRoomsListComponent, BabylonRoomsListV2Component, BabylonRoomsSliderComponent, BabylonServicesSliderComponent, BabylonSimpleImgInfoComponent, BabylonSliC1ImgTextComponent, BabylonSliC3SvgVidCtaComponent, BabylonSliC3TxtImgCtaComponent, BabylonSliC5ImgTxtComponent, BabylonSlider2colComponent, BabylonSlider2colV2Component, BabylonSlider2itemsComponent, BabylonSlider3ColComponent, BabylonSlider3colClearComponent, BabylonSlider3colV2Component, BabylonSlider3itemsComponent, BabylonSlider4colComponent, BabylonSliderBoxComponent, BabylonSliderImgStaticComponent, BabylonSliderImgStaticV2Component, BabylonSliderImgVideoComponent, BabylonSocialBarComponent, BabylonSocialBarV2Component, BabylonStaticFooterComponent, BabylonStaticFooterV2Component, BabylonStaticFooterV3Component, BabylonSubmenuHotelComponent, BabylonThanksComponent, BabylonTopSimpleBannerComponent, BabylonTopSimpleImgComponent, BabylonTopSliderComponent, BabylonTopSliderImgVideoComponent, BabylonTopSliderThumbsComponent, BabylonTopSliderV2Component, BabylonTopSliderVideoComponent, BabylonTopSliderVideoV2Component, BabylonVariantSelectorComponent, BabylonWebmapComponent, BabylonWebmapV2Component, ButtonType, C2ImgTxtSvgComponent, C2TxtCtaComponent, C2TxtCtaDesComponent, C2TxtImgV2Component, C2TxtMdh005Component, C2TxtRrssComponent, C2TxtSvgImgCtaComponent, C3TxtImgCtaComponent, C4C1ImgTxtCComponent, C4C1ImgTxtComponent, C4C1TxtComponent, C4FoLinkSvgComponent, C4ForC2TxtComponent, C4HeImgTxtComponent, C4LisC2ImgTxtComponent, C4MeTxtSvgCtaComponent, C4SliC2ImgTxtCComponent, C4SliC2TxtImgComponent, C4TxtSvgComponent, CarC2TxtCtaComponent, H04SliderTextComponent, LisC2ImgTxtCv4Component, LisC2TxtImgComponent, LisC2TxtImgSvgCComponent, LisC3TxtImgCtComponent, LisC4TxtDesCtaComponent, ListRoomsComponent, LogoType, MapperService, SCREEN_SIZER_PARAMS_TOKEN, SITE_CONFIG_SERVICE_TOKEN, SafeHtmlPipe, ScreenSizerService, SliC1ImgSvgComponent, SliC2ImgComponent, SliC2ImgTxtCtaV3Component, SliC2ImgTxtCv5Component, SliC2ImgV2Component, SliC2TxtCarImgCComponent, SliC2TxtImgSvgCComponent, Utils, complex_links, organization_name };
|
|
21113
|
+
export { Babylon404Component, BabylonActionBannerComponent, BabylonAdvantagesComponent, BabylonAdvantagesV2Component, BabylonAvC4ImgTextComponent, BabylonAvImgSocialComponent, BabylonAvTxtIcoComponent, BabylonBaImgTxtComponent, BabylonBaSliImgTxtComponent, BabylonBannerGalleryComponent, BabylonBannerInfoComponent, BabylonBannerNewsletterComponent, BabylonBlogDetailsComponent, BabylonBlogListComponent, BabylonBookingWidgetComponent, BabylonBreadcrumbComponent, BabylonBreadcrumbV2Component, BabylonC1TxtComponent, BabylonCleanPropsPipe, BabylonColorPickerComponent, BabylonComingsoonComponent, BabylonContactAddressComponent, BabylonContactFormComponent, BabylonContactFormV2Component, BabylonContactHowComponent, BabylonContactMapComponent, BabylonContainerTextL2Component, BabylonDynamicHeadingComponent, BabylonEngineComponent, BabylonEngineModalComponent, BabylonEngineModalV3Component, BabylonEngineWidgetModalComponent, BabylonExternalScriptComponent, BabylonFaqComponent, BabylonFaqV2Component, BabylonFeaturePillsComponent, BabylonFeaturePillsNumberComponent, BabylonFeaturesSliderComponent, BabylonFilterModalComponent, BabylonFloatingButtonsComponent, BabylonFoAddrContImgComponent, BabylonFoC3ImgTxtComponent, BabylonFoC3TxtSvgCtaComponent, BabylonFoLisC4TxtComponent, BabylonFoSliImgComponent, BabylonFooterContactComponent, BabylonFooterLinksComponent, BabylonFooterLogosComponent, BabylonFooterSocialComponent, BabylonFooterSocialI, BabylonGalleryComponent, BabylonGalleryV2Component, BabylonGlobalModalComponent, BabylonGrC2ImgComponent, BabylonGridGalleryComponent, BabylonGuestsPopupComponent, BabylonHeMeSvgTextCtaMotComponent, BabylonHeSvgListComponent, BabylonHeadIntroComponent, BabylonHeaderBookShowComponent, BabylonHeaderClearComponent, BabylonHeaderClearV2Component, BabylonHeaderMenuCenterComponent, BabylonHeaderMenuLogoCenterComponent, BabylonHeaderMenuShowComponent, BabylonHeaderMobileComponent, BabylonHotelsListComponent, BabylonHotelsSliderComponent, BabylonImgBannerComponent, BabylonInfo2ColImgComponent, BabylonInfo2imgBigComponent, BabylonInfo2imgComponent, BabylonInfo3imgComponent, BabylonInfo4imgComponent, BabylonInfoBigComponent, BabylonInfoBigV2Component, BabylonInfoBigV3Component, BabylonInfoCircleImgsComponent, BabylonInfoGridComponent, BabylonInfoGridI, BabylonInfoImgComponent, BabylonInfoImgSliderComponent, BabylonInfoImgV2Component, BabylonInfoIntroComponent, BabylonInfoShowImgComponent, BabylonInfoZigZagComponent, BabylonInfoZigZagCounterComponent, BabylonInfoZigzagV2Component, BabylonInfoZigzagV4Component, BabylonItemsGridComponent, BabylonLanguageModalComponent, BabylonLanguageModalV2Component, BabylonLanguageModalV3Component, BabylonLegalComponent, BabylonLisC2ImgVidComponent, BabylonLisC2TxtComponent, BabylonLisC4TxtIcoComponent, BabylonLisC4TxtImgPdfComponent, BabylonLisC5TxtImgSvgComponent, BabylonLisSvgTxtCtaComponent, BabylonListBoxInfoComponent, BabylonListC3ImgTxtComponent, BabylonListC6TxtComponent, BabylonListGridComponent, BabylonListGridI, BabylonListImgComponent, BabylonListImgInfoComponent, BabylonListImgV2Component, BabylonLoyaltyTableComponent, BabylonMapTxtComponent, BabylonModC2ImgTxtCtaComponent, BabylonModalMultipleMotorsComponent, BabylonModalService, BabylonNewsletterComponent, BabylonNewsletterI, BabylonNewsletterModalV2Component, BabylonOfferDetailComponent, BabylonOfferDetailV2Component, BabylonOfferPopupComponent, BabylonOfferPopupComponentV2, BabylonOfferPopupV3Component, BabylonOfferSliderComponent, BabylonOffersListComponent, BabylonOffersSliderComponent, BabylonPreloadComponent, BabylonPressListComponent, BabylonRoomDetailsComponent, BabylonRoomsColsComponent, BabylonRoomsGridComponent, BabylonRoomsListComponent, BabylonRoomsListV2Component, BabylonRoomsSliderComponent, BabylonServicesSliderComponent, BabylonSimpleImgInfoComponent, BabylonSliC1ImgTextComponent, BabylonSliC3SvgVidCtaComponent, BabylonSliC3TxtImgCtaComponent, BabylonSliC5ImgTxtComponent, BabylonSlider2colComponent, BabylonSlider2colV2Component, BabylonSlider2itemsComponent, BabylonSlider3ColComponent, BabylonSlider3colClearComponent, BabylonSlider3colV2Component, BabylonSlider3itemsComponent, BabylonSlider4colComponent, BabylonSliderBoxComponent, BabylonSliderImgStaticComponent, BabylonSliderImgStaticV2Component, BabylonSliderImgVideoComponent, BabylonSocialBarComponent, BabylonSocialBarV2Component, BabylonStaticFooterComponent, BabylonStaticFooterV2Component, BabylonStaticFooterV3Component, BabylonStaticFooterV4Component, BabylonSubmenuHotelComponent, BabylonThanksComponent, BabylonTopSimpleBannerComponent, BabylonTopSimpleImgComponent, BabylonTopSliderComponent, BabylonTopSliderImgVideoComponent, BabylonTopSliderThumbsComponent, BabylonTopSliderV2Component, BabylonTopSliderVideoComponent, BabylonTopSliderVideoV2Component, BabylonVariantSelectorComponent, BabylonWebmapComponent, BabylonWebmapV2Component, ButtonType, C2ImgTxtSvgComponent, C2TxtCtaComponent, C2TxtCtaDesComponent, C2TxtImgV2Component, C2TxtMdh005Component, C2TxtRrssComponent, C2TxtSvgImgCtaComponent, C3TxtImgCtaComponent, C4C1ImgTxtCComponent, C4C1ImgTxtComponent, C4C1TxtComponent, C4FoLinkSvgComponent, C4ForC2TxtComponent, C4HeImgTxtComponent, C4LisC2ImgTxtComponent, C4MeTxtSvgCtaComponent, C4SliC2ImgTxtCComponent, C4SliC2TxtImgComponent, C4TxtSvgComponent, CarC2TxtCtaComponent, H04SliderTextComponent, LisC2ImgTxtCv4Component, LisC2TxtImgComponent, LisC2TxtImgSvgCComponent, LisC3TxtImgCtComponent, LisC4TxtDesCtaComponent, ListRoomsComponent, LogoType, MapperService, SCREEN_SIZER_PARAMS_TOKEN, SITE_CONFIG_SERVICE_TOKEN, SafeHtmlPipe, ScreenSizerService, SliC1ImgSvgComponent, SliC2ImgComponent, SliC2ImgTxtCtaV3Component, SliC2ImgTxtCv5Component, SliC2ImgV2Component, SliC2TxtCarImgCComponent, SliC2TxtImgSvgCComponent, Utils, complex_links, organization_name };
|
|
20984
21114
|
//# sourceMappingURL=ctt-babylon.mjs.map
|