ctt-babylon 0.0.152 → 0.0.154

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.
Files changed (27) hide show
  1. package/esm2022/lib/components/core/babylon-banner-info/babylon-banner-info.component.mjs +25 -6
  2. package/esm2022/lib/components/core/babylon-features-slider/babylon-features-slider.component.mjs +25 -6
  3. package/esm2022/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.mjs +20 -5
  4. package/esm2022/lib/components/core/babylon-rooms-list/babylon-rooms-list.component.mjs +15 -5
  5. package/esm2022/lib/directives/babylon-sliders/babylon-sliders.directive.mjs +90 -0
  6. package/esm2022/lib/directives/link-type/link-type.directive.mjs +36 -0
  7. package/esm2022/lib/interfaces/babylon-banner-info.interface.mjs +2 -0
  8. package/esm2022/lib/interfaces/babylon-dropdown.interface.mjs +2 -0
  9. package/esm2022/lib/interfaces/babylon-features-slider.interface.mjs +2 -0
  10. package/esm2022/lib/interfaces/babylon-rooms-cols.interface.mjs +2 -0
  11. package/esm2022/lib/interfaces/babylon-rooms-list.interface.mjs +2 -0
  12. package/esm2022/public-api.mjs +5 -1
  13. package/fesm2022/ctt-babylon.mjs +188 -15
  14. package/fesm2022/ctt-babylon.mjs.map +1 -1
  15. package/lib/components/core/babylon-banner-info/babylon-banner-info.component.d.ts +13 -2
  16. package/lib/components/core/babylon-features-slider/babylon-features-slider.component.d.ts +16 -2
  17. package/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.d.ts +30 -1
  18. package/lib/components/core/babylon-rooms-list/babylon-rooms-list.component.d.ts +5 -1
  19. package/lib/directives/babylon-sliders/babylon-sliders.directive.d.ts +11 -0
  20. package/lib/directives/link-type/link-type.directive.d.ts +11 -0
  21. package/lib/interfaces/babylon-banner-info.interface.d.ts +9 -0
  22. package/lib/interfaces/babylon-dropdown.interface.d.ts +7 -0
  23. package/lib/interfaces/babylon-features-slider.interface.d.ts +8 -0
  24. package/lib/interfaces/babylon-rooms-cols.interface.d.ts +9 -0
  25. package/lib/interfaces/babylon-rooms-list.interface.d.ts +6 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +4 -0
@@ -1,11 +1,30 @@
1
- import { Component } from '@angular/core';
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
2
3
  import * as i0 from "@angular/core";
3
4
  export class BabylonBannerInfoComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBannerInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonBannerInfoComponent, isStandalone: true, selector: "lib-babylon-banner-info", ngImport: i0, template: " <!-- La foto es opcional -->\r\n <section class=\"babylon__banner-info margin-main\"> \r\n <div class=\" margin-main cs_bg_filed bg--white\" data-src=\"/assets/babylon/fotos/newsletter_bg.jpeg\"> \r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xxl-8 offset-xxl-2 col-xl-10 offset-xl-1\">\r\n <div class=\"cs_newsletter cs_style_1 text-center\"> \r\n <div class=\"intro_info align--center intro_info--light no-align\">\r\n <h3 class=\"pretitle\">Banner Info </h3>\r\n <h3 class=\"title--small mb--10\" >For Exclusive and Updates Subscribe Our Babylon Newsletter!</h3> \r\n <p class=\"text mb--10\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered</p>\r\n <div class=\"btns__box align--center\">\r\n <a href=\" \" class=\"btn btn_primary btn--light\">\r\n <b>Learn More</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </div> \r\n </section>", styles: [""] }); }
5
+ constructor(cdr) {
6
+ this.cdr = cdr;
7
+ }
8
+ ngAfterViewInit() {
9
+ setTimeout(() => {
10
+ this.cdr.detectChanges();
11
+ }, 100);
12
+ }
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBannerInfoComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
14
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonBannerInfoComponent, isStandalone: true, selector: "lib-babylon-banner-info", inputs: { pretitle: "pretitle", title: "title", description: "description", button: "button", image: "image" }, ngImport: i0, template: " <!-- La foto es opcional -->\r\n <section class=\"babylon__banner-info margin-main\">\r\n <div class=\" margin-main cs_bg_filed bg--white\" [attr.data-src]=\"image?.src\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xxl-8 offset-xxl-2 col-xl-10 offset-xl-1\">\r\n <div class=\"cs_newsletter cs_style_1 text-center\">\r\n <div class=\"intro_info align--center intro_info--light no-align\">\r\n @if(pretitle){\r\n <h3 class=\"pretitle\">{{ pretitle }}</h3>\r\n } @if(title){\r\n <h3 class=\"title--small mb--10\" >{{ title }}</h3>\r\n } @if(description){\r\n <p class=\"text mb--10\">{{ description }}</p>\r\n } @if(button){\r\n <div class=\"btns__box align--center\">\r\n <a\r\n [href]=\"button.url\"\r\n class=\"btn btn_primary btn--light\"\r\n >\r\n <b>{{ button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </section>\r\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
15
  }
7
16
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBannerInfoComponent, decorators: [{
8
17
  type: Component,
9
- args: [{ selector: 'lib-babylon-banner-info', standalone: true, imports: [], template: " <!-- La foto es opcional -->\r\n <section class=\"babylon__banner-info margin-main\"> \r\n <div class=\" margin-main cs_bg_filed bg--white\" data-src=\"/assets/babylon/fotos/newsletter_bg.jpeg\"> \r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xxl-8 offset-xxl-2 col-xl-10 offset-xl-1\">\r\n <div class=\"cs_newsletter cs_style_1 text-center\"> \r\n <div class=\"intro_info align--center intro_info--light no-align\">\r\n <h3 class=\"pretitle\">Banner Info </h3>\r\n <h3 class=\"title--small mb--10\" >For Exclusive and Updates Subscribe Our Babylon Newsletter!</h3> \r\n <p class=\"text mb--10\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered</p>\r\n <div class=\"btns__box align--center\">\r\n <a href=\" \" class=\"btn btn_primary btn--light\">\r\n <b>Learn More</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </div> \r\n </section>" }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVMxQyxNQUFNLE9BQU8sMEJBQTBCOytHQUExQiwwQkFBMEI7bUdBQTFCLDBCQUEwQixtRkNUdkMsdXpDQXVCWTs7NEZEZEMsMEJBQTBCO2tCQVB0QyxTQUFTOytCQUNFLHlCQUF5QixjQUN2QixJQUFJLFdBQ1AsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1iYW5uZXItaW5mbycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tYmFubmVyLWluZm8uY29tcG9uZW50LnNjc3MnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBCYWJ5bG9uQmFubmVySW5mb0NvbXBvbmVudCB7XHJcblxyXG59XHJcbiIsIiAgIDwhLS0gIExhIGZvdG8gZXMgb3BjaW9uYWwgLS0+XHJcbiAgIDxzZWN0aW9uIGNsYXNzPVwiYmFieWxvbl9fYmFubmVyLWluZm8gbWFyZ2luLW1haW5cIj4gXHJcbiAgICA8ZGl2IGNsYXNzPVwiIG1hcmdpbi1tYWluIGNzX2JnX2ZpbGVkIGJnLS13aGl0ZVwiIGRhdGEtc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ZvdG9zL25ld3NsZXR0ZXJfYmcuanBlZ1wiPiAgXHJcbiAgICAgIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwicm93XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLXh4bC04IG9mZnNldC14eGwtMiBjb2wteGwtMTAgb2Zmc2V0LXhsLTFcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX25ld3NsZXR0ZXIgY3Nfc3R5bGVfMSB0ZXh0LWNlbnRlclwiPiBcclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBhbGlnbi0tY2VudGVyIGludHJvX2luZm8tLWxpZ2h0IG5vLWFsaWduXCI+XHJcbiAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInByZXRpdGxlXCI+QmFubmVyIEluZm8gPC9oMz5cclxuICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiID5Gb3IgRXhjbHVzaXZlICBhbmQgVXBkYXRlcyBTdWJzY3JpYmUgT3VyIEJhYnlsb24gTmV3c2xldHRlciE8L2gzPiAgXHJcbiAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dCBtYi0tMTBcIj5FeGNlcHRpb25hbCBkaW5pbmcgYXdhaXRzIGF0IG91ciByZXNvcnQuIEltbWVyc2UgeW91cnNlbGYgaW4gZXhxdWlzaXRlICBmbGF2b3JzIHdpdGggdmlldyB0byBtYXRjaC4gUHVyZSBpbmR1bGdlbmNlLCBlZmZvcnRsZXNzbHkgZGVsaXZlcmVkPC9wPlxyXG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuc19fYm94IGFsaWduLS1jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgYnRuLS1saWdodFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIDxiPkxlYXJuIE1vcmU8L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICA8L2Rpdj4gICBcclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+IFxyXG4gICAgPC9kaXY+IFxyXG4gIDwvc2VjdGlvbj4iXX0=
18
+ args: [{ selector: 'lib-babylon-banner-info', standalone: true, imports: [CommonModule], changeDetection: ChangeDetectionStrategy.OnPush, template: " <!-- La foto es opcional -->\r\n <section class=\"babylon__banner-info margin-main\">\r\n <div class=\" margin-main cs_bg_filed bg--white\" [attr.data-src]=\"image?.src\">\r\n <div class=\"container\">\r\n <div class=\"row\">\r\n <div class=\"col-xxl-8 offset-xxl-2 col-xl-10 offset-xl-1\">\r\n <div class=\"cs_newsletter cs_style_1 text-center\">\r\n <div class=\"intro_info align--center intro_info--light no-align\">\r\n @if(pretitle){\r\n <h3 class=\"pretitle\">{{ pretitle }}</h3>\r\n } @if(title){\r\n <h3 class=\"title--small mb--10\" >{{ title }}</h3>\r\n } @if(description){\r\n <p class=\"text mb--10\">{{ description }}</p>\r\n } @if(button){\r\n <div class=\"btns__box align--center\">\r\n <a\r\n [href]=\"button.url\"\r\n class=\"btn btn_primary btn--light\"\r\n >\r\n <b>{{ button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </section>\r\n" }]
19
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { pretitle: [{
20
+ type: Input
21
+ }], title: [{
22
+ type: Input
23
+ }], description: [{
24
+ type: Input
25
+ }], button: [{
26
+ type: Input
27
+ }], image: [{
28
+ type: Input
29
+ }] } });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRzVHLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFXL0MsTUFBTSxPQUFPLDBCQUEwQjtJQU9yQyxZQUFvQixHQUFzQjtRQUF0QixRQUFHLEdBQUgsR0FBRyxDQUFtQjtJQUFHLENBQUM7SUFFOUMsZUFBZTtRQUNiLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1FBQzNCLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQztJQUNWLENBQUM7K0dBYlUsMEJBQTBCO21HQUExQiwwQkFBMEIsbU1DZHZDLG81Q0FnQ0EseUREdkJZLFlBQVk7OzRGQUtYLDBCQUEwQjtrQkFSdEMsU0FBUzsrQkFDRSx5QkFBeUIsY0FDdkIsSUFBSSxXQUNQLENBQUMsWUFBWSxDQUFDLG1CQUdOLHVCQUF1QixDQUFDLE1BQU07c0ZBR3RDLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFmdGVyVmlld0luaXQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDaGFuZ2VEZXRlY3RvclJlZiwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBCYWJ5bG9uQnV0dG9uSSB9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMvYmFieWxvbi1idXR0b24uaW50ZXJmYWNlJztcclxuaW1wb3J0IHsgQmFieWxvbkltYWdlSSB9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMvYmFieWxvbi1pbWFnZS5pbnRlcmZhY2UnO1xyXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xyXG5cclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWJhYnlsb24tYmFubmVyLWluZm8nLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2JhYnlsb24tYmFubmVyLWluZm8uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9iYWJ5bG9uLWJhbm5lci1pbmZvLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25CYW5uZXJJbmZvQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XHJcbiAgQElucHV0KCkgcHJldGl0bGU/OiBzdHJpbmc7XHJcbiAgQElucHV0KCkgdGl0bGU/OiBzdHJpbmc7XHJcbiAgQElucHV0KCkgZGVzY3JpcHRpb24/OiBzdHJpbmc7XHJcbiAgQElucHV0KCkgYnV0dG9uPzogQmFieWxvbkJ1dHRvbkk7XHJcbiAgQElucHV0KCkgaW1hZ2U/OiBCYWJ5bG9uSW1hZ2VJO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XHJcblxyXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICB0aGlzLmNkci5kZXRlY3RDaGFuZ2VzKCk7XHJcbiAgICB9LCAxMDApO1xyXG4gIH1cclxuXHJcbn1cclxuIiwiICAgPCEtLSAgTGEgZm90byBlcyBvcGNpb25hbCAtLT5cclxuICAgPHNlY3Rpb24gY2xhc3M9XCJiYWJ5bG9uX19iYW5uZXItaW5mbyBtYXJnaW4tbWFpblwiPlxyXG4gICAgPGRpdiBjbGFzcz1cIiBtYXJnaW4tbWFpbiBjc19iZ19maWxlZCBiZy0td2hpdGVcIiBbYXR0ci5kYXRhLXNyY109XCJpbWFnZT8uc3JjXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwicm93XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLXh4bC04IG9mZnNldC14eGwtMiBjb2wteGwtMTAgb2Zmc2V0LXhsLTFcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX25ld3NsZXR0ZXIgY3Nfc3R5bGVfMSB0ZXh0LWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIGFsaWduLS1jZW50ZXIgaW50cm9faW5mby0tbGlnaHQgbm8tYWxpZ25cIj5cclxuICAgICAgICAgICAgICAgICAgQGlmKHByZXRpdGxlKXtcclxuICAgICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJwcmV0aXRsZVwiPnt7IHByZXRpdGxlIH19PC9oMz5cclxuICAgICAgICAgICAgICAgICAgfSBAaWYodGl0bGUpe1xyXG4gICAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIiA+e3sgdGl0bGUgfX08L2gzPlxyXG4gICAgICAgICAgICAgICAgICB9IEBpZihkZXNjcmlwdGlvbil7XHJcbiAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0IG1iLS0xMFwiPnt7IGRlc2NyaXB0aW9uIH19PC9wPlxyXG4gICAgICAgICAgICAgICAgICB9IEBpZihidXR0b24pe1xyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG5zX19ib3ggYWxpZ24tLWNlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8YVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIFtocmVmXT1cImJ1dHRvbi51cmxcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiYnRuIGJ0bl9wcmltYXJ5IGJ0bi0tbGlnaHRcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj57eyBidXR0b24ubGFiZWwgfX08L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L3NlY3Rpb24+XHJcbiJdfQ==
@@ -1,11 +1,30 @@
1
- import { Component } from '@angular/core';
1
+ import { CommonModule } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
3
+ import { BabylonSlidersDirective } from '../../../directives/babylon-sliders/babylon-sliders.directive';
2
4
  import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
3
6
  export class BabylonFeaturesSliderComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonFeaturesSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonFeaturesSliderComponent, isStandalone: true, selector: "lib-babylon-features-slider", ngImport: i0, template: "<section class=\"babylon__features-slider margin-main \"> \r\n \r\n <div class=\"cs_slider cs_style_1 cs_slider_gap_30 cs_show_shadow_20\">\r\n <div class=\"container\">\r\n <div class=\"cs_section_heading_wrap_1\">\r\n <div class=\"cs_section_heading cs_style_1 \">\r\n <div class=\"intro_info no-align\">\r\n <h3 class=\"pretitle wow fadeInLeft\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Features Slider </h3>\r\n <h2 class=\"title\">Unveiling Unmatched Coastal <br>Luxury and Hospitality</h2> \r\n </div> \r\n \r\n </div>\r\n <div class=\"cs_slider_arrows cs_style_4\"> \r\n <div class=\"cs_left_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-left-big\"></span> \r\n </div>\r\n <div class=\" cs_right_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </div>\r\n </div>\r\n </div>\r\n \r\n <div class=\"cs_full_width_right mb--20\">\r\n <div class=\"cs_slider_container\" data-autoplay=\"0\" data-loop=\"1\" data-speed=\"600\" data-center=\"0\" data-variable-width=\"1\" data-slides-per-view=\"responsive\" data-xs-slides=\"1\" data-sm-slides=\"2\" data-md-slides=\"2\" data-lg-slides=\"3\" data-add-slides=\"3\">\r\n <div class=\"cs_slider_wrapper\">\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary \">\r\n <b>Learn More</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n </section>", 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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_iconbox.cs_style_3{box-shadow:0 0 20px 0 var(--cl_shadow);padding:1px 50px 44px;margin-top:62px}@media (max-width: 991px){.cs_iconbox.cs_style_3{padding:1px 30px 34px}}@media (max-width: 374px){.cs_iconbox.cs_style_3{padding:1px 25px 34px}}.cs_iconbox.cs_style_3 .cs_iconbox_icon{height:125px;width:125px;border:1px solid var(--cl_icon);margin-top:-63px}.cs_iconbox.cs_style_3 .cs_iconbox_icon img{width:60px;transition:all 1s ease}.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img{transform:rotateY(360deg)}.babylon__features-slider{overflow:hidden}\n"] }); }
7
+ constructor(cdr) {
8
+ this.cdr = cdr;
9
+ }
10
+ ngAfterViewInit() {
11
+ setTimeout(() => {
12
+ this.cdr.detectChanges();
13
+ }, 100);
14
+ }
15
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonFeaturesSliderComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
16
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonFeaturesSliderComponent, isStandalone: true, selector: "lib-babylon-features-slider", inputs: { pretitle: "pretitle", title: "title", items: "items", button: "button" }, ngImport: i0, template: "<section class=\"babylon__features-slider margin-main \">\r\n\r\n <div class=\"cs_slider cs_style_1 cs_slider_gap_30 cs_show_shadow_20\">\r\n <div class=\"container\">\r\n <div class=\"cs_section_heading_wrap_1\">\r\n <div class=\"cs_section_heading cs_style_1 \">\r\n <div class=\"intro_info no-align\">\r\n @if(pretitle){\r\n <h3 class=\"pretitle wow fadeInLeft\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">{{ pretitle }} </h3>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n\r\n </div>\r\n <div class=\"cs_slider_arrows cs_style_4\">\r\n <div class=\"cs_left_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-left-big\"></span>\r\n </div>\r\n <div class=\" cs_right_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"cs_full_width_right mb--20\">\r\n <div\r\n class=\"cs_slider_container\"\r\n sliders=\"cs_slider_container\"\r\n data-autoplay=\"0\"\r\n data-loop=\"1\"\r\n data-speed=\"600\"\r\n data-center=\"0\"\r\n data-variable-width=\"1\"\r\n data-slides-per-view=\"responsive\"\r\n data-xs-slides=\"1\"\r\n data-sm-slides=\"2\"\r\n data-md-slides=\"2\"\r\n data-lg-slides=\"3\"\r\n data-add-slides=\"3\"\r\n >\r\n <div class=\"cs_slider_wrapper\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n @if(item.icon){\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\">\r\n <div class=\"info--icon icon--medium \">\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"item.icon\"\r\n ></i>\r\n </div>\r\n </div>\r\n } @if(item.title){\r\n <h3 class=\"title--small mb--10\">{{ item.title }}</h3>\r\n } @if(item.description){\r\n <p class=\"text\">{{ item.description }}</p>\r\n }\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n @if(button){\r\n <div class=\"btns__box align--center \">\r\n <a\r\n [href]=\"button.url\"\r\n class=\"btn btn_primary \"\r\n >\r\n <b>{{ button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n\r\n </section>\r\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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_iconbox.cs_style_3{box-shadow:0 0 20px 0 var(--cl_shadow);padding:1px 50px 44px;margin-top:62px}@media (max-width: 991px){.cs_iconbox.cs_style_3{padding:1px 30px 34px}}@media (max-width: 374px){.cs_iconbox.cs_style_3{padding:1px 25px 34px}}.cs_iconbox.cs_style_3 .cs_iconbox_icon{height:125px;width:125px;border:1px solid var(--cl_icon);margin-top:-63px}.cs_iconbox.cs_style_3 .cs_iconbox_icon img{width:60px;transition:all 1s ease}.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img{transform:rotateY(360deg)}.babylon__features-slider{overflow:hidden}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonSlidersDirective, selector: "[sliders]", inputs: ["sliders"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
17
  }
7
18
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonFeaturesSliderComponent, decorators: [{
8
19
  type: Component,
9
- args: [{ selector: 'lib-babylon-features-slider', standalone: true, imports: [], template: "<section class=\"babylon__features-slider margin-main \"> \r\n \r\n <div class=\"cs_slider cs_style_1 cs_slider_gap_30 cs_show_shadow_20\">\r\n <div class=\"container\">\r\n <div class=\"cs_section_heading_wrap_1\">\r\n <div class=\"cs_section_heading cs_style_1 \">\r\n <div class=\"intro_info no-align\">\r\n <h3 class=\"pretitle wow fadeInLeft\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">Features Slider </h3>\r\n <h2 class=\"title\">Unveiling Unmatched Coastal <br>Luxury and Hospitality</h2> \r\n </div> \r\n \r\n </div>\r\n <div class=\"cs_slider_arrows cs_style_4\"> \r\n <div class=\"cs_left_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-left-big\"></span> \r\n </div>\r\n <div class=\" cs_right_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </div>\r\n </div>\r\n </div>\r\n \r\n <div class=\"cs_full_width_right mb--20\">\r\n <div class=\"cs_slider_container\" data-autoplay=\"0\" data-loop=\"1\" data-speed=\"600\" data-center=\"0\" data-variable-width=\"1\" data-slides-per-view=\"responsive\" data-xs-slides=\"1\" data-sm-slides=\"2\" data-md-slides=\"2\" data-lg-slides=\"3\" data-add-slides=\"3\">\r\n <div class=\"cs_slider_wrapper\">\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\"> \r\n <div class=\"info--icon icon--medium \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n </div>\r\n <h3 class=\"title--small mb--10\">Restaurant &amp; Bar</h3>\r\n <p class=\"text\">Exceptional dining awaits at our resort. Immerse yourself in exquisite flavors with view to match. Pure indulgence, effortlessly delivered.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary \">\r\n <b>Learn More</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div>\r\n </div>\r\n </div>\r\n \r\n </section>", 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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_iconbox.cs_style_3{box-shadow:0 0 20px 0 var(--cl_shadow);padding:1px 50px 44px;margin-top:62px}@media (max-width: 991px){.cs_iconbox.cs_style_3{padding:1px 30px 34px}}@media (max-width: 374px){.cs_iconbox.cs_style_3{padding:1px 25px 34px}}.cs_iconbox.cs_style_3 .cs_iconbox_icon{height:125px;width:125px;border:1px solid var(--cl_icon);margin-top:-63px}.cs_iconbox.cs_style_3 .cs_iconbox_icon img{width:60px;transition:all 1s ease}.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img{transform:rotateY(360deg)}.babylon__features-slider{overflow:hidden}\n"] }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1mZWF0dXJlcy1zbGlkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFieWxvbi9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFDLE1BQU0sT0FBTyw4QkFBOEI7K0dBQTlCLDhCQUE4QjttR0FBOUIsOEJBQThCLHVGQ1QzQyx5aUxBNEZZOzs0RkRuRkMsOEJBQThCO2tCQVAxQyxTQUFTOytCQUNFLDZCQUE2QixjQUMzQixJQUFJLFdBQ1AsRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1mZWF0dXJlcy1zbGlkZXInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW10sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vYmFieWxvbi1mZWF0dXJlcy1zbGlkZXIuY29tcG9uZW50LnNjc3MnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBCYWJ5bG9uRmVhdHVyZXNTbGlkZXJDb21wb25lbnQge1xyXG5cclxufVxyXG4iLCI8c2VjdGlvbiBjbGFzcz1cImJhYnlsb25fX2ZlYXR1cmVzLXNsaWRlciBtYXJnaW4tbWFpbiAgXCI+ICBcclxuIFxyXG4gICAgPGRpdiBjbGFzcz1cImNzX3NsaWRlciBjc19zdHlsZV8xIGNzX3NsaWRlcl9nYXBfMzAgY3Nfc2hvd19zaGFkb3dfMjBcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJjc19zZWN0aW9uX2hlYWRpbmdfd3JhcF8xXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2VjdGlvbl9oZWFkaW5nIGNzX3N0eWxlXzEgXCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIG5vLWFsaWduXCI+XHJcbiAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJwcmV0aXRsZSB3b3cgZmFkZUluTGVmdFwiIGRhdGEtd293LWR1cmF0aW9uPVwiMC44c1wiIGRhdGEtd293LWRlbGF5PVwiMC4yc1wiPkZlYXR1cmVzIFNsaWRlciA8L2gzPlxyXG4gICAgICAgICAgICAgICAgPGgyIGNsYXNzPVwidGl0bGVcIj5VbnZlaWxpbmcgVW5tYXRjaGVkIENvYXN0YWwgPGJyPkx1eHVyeSBhbmQgSG9zcGl0YWxpdHk8L2gyPiAgXHJcbiAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgIFxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX2Fycm93cyBjc19zdHlsZV80XCI+IFxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfbGVmdF9hcnJvdyBzbGljay1hcnJvdyBjc19jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1sZWZ0LWJpZ1wiPjwvc3Bhbj4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cIiBjc19yaWdodF9hcnJvdyBzbGljay1hcnJvdyBjc19jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgXHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNzX2Z1bGxfd2lkdGhfcmlnaHQgbWItLTIwXCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX2NvbnRhaW5lclwiIGRhdGEtYXV0b3BsYXk9XCIwXCIgZGF0YS1sb29wPVwiMVwiIGRhdGEtc3BlZWQ9XCI2MDBcIiBkYXRhLWNlbnRlcj1cIjBcIiBkYXRhLXZhcmlhYmxlLXdpZHRoPVwiMVwiIGRhdGEtc2xpZGVzLXBlci12aWV3PVwicmVzcG9uc2l2ZVwiIGRhdGEteHMtc2xpZGVzPVwiMVwiIGRhdGEtc20tc2xpZGVzPVwiMlwiIGRhdGEtbWQtc2xpZGVzPVwiMlwiIGRhdGEtbGctc2xpZGVzPVwiM1wiIGRhdGEtYWRkLXNsaWRlcz1cIjNcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX3NsaWRlcl93cmFwcGVyXCI+XHJcbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX3NsaWRlXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfaWNvbmJveCBjc19zdHlsZV8zIGNzLS1yYWRpdXMgYmctLXdoaXRlXCI+XHJcbiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19pY29uYm94X2ljb24gY3NfbWJfMjkgY3NfY2VudGVyIGNzLS1yYWRpdXMgYmctLXdoaXRlXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBpY29uLS1tZWRpdW0gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+ICAgICBcclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiPlJlc3RhdXJhbnQgJmFtcDsgQmFyPC9oMz5cclxuICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0XCI+RXhjZXB0aW9uYWwgZGluaW5nIGF3YWl0cyBhdCBvdXIgcmVzb3J0LiBJbW1lcnNlIHlvdXJzZWxmIGluIGV4cXVpc2l0ZSAgZmxhdm9ycyB3aXRoIHZpZXcgdG8gbWF0Y2guIFB1cmUgaW5kdWxnZW5jZSwgZWZmb3J0bGVzc2x5IGRlbGl2ZXJlZC48L3A+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19pY29uYm94IGNzX3N0eWxlXzMgY3MtLXJhZGl1cyBiZy0td2hpdGVcIj5cclxuICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3hfaWNvbiBjc19tYl8yOSBjc19jZW50ZXIgY3MtLXJhZGl1cyBiZy0td2hpdGVcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIGljb24tLW1lZGl1bSBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJ0aXRsZS0tc21hbGwgbWItLTEwXCI+UmVzdGF1cmFudCAmYW1wOyBCYXI8L2gzPlxyXG4gICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHRcIj5FeGNlcHRpb25hbCBkaW5pbmcgYXdhaXRzIGF0IG91ciByZXNvcnQuIEltbWVyc2UgeW91cnNlbGYgaW4gZXhxdWlzaXRlICBmbGF2b3JzIHdpdGggdmlldyB0byBtYXRjaC4gUHVyZSBpbmR1bGdlbmNlLCBlZmZvcnRsZXNzbHkgZGVsaXZlcmVkLjwvcD5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19zbGlkZVwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3ggY3Nfc3R5bGVfMyBjcy0tcmFkaXVzIGJnLS13aGl0ZVwiPlxyXG4gICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfaWNvbmJveF9pY29uIGNzX21iXzI5IGNzX2NlbnRlciBjcy0tcmFkaXVzIGJnLS13aGl0ZVwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gaWNvbi0tbWVkaXVtIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29uLS1zdmcgaWNvbi1udWV2b19wYXhfaWNvX3NtYWxsIFwiPjwvaT4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIj5SZXN0YXVyYW50ICZhbXA7IEJhcjwvaDM+XHJcbiAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dFwiPkV4Y2VwdGlvbmFsIGRpbmluZyBhd2FpdHMgYXQgb3VyIHJlc29ydC4gSW1tZXJzZSB5b3Vyc2VsZiBpbiBleHF1aXNpdGUgIGZsYXZvcnMgd2l0aCB2aWV3IHRvIG1hdGNoLiBQdXJlIGluZHVsZ2VuY2UsIGVmZm9ydGxlc3NseSBkZWxpdmVyZWQuPC9wPlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX3NsaWRlXCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfaWNvbmJveCBjc19zdHlsZV8zIGNzLS1yYWRpdXMgYmctLXdoaXRlXCI+XHJcbiAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19pY29uYm94X2ljb24gY3NfbWJfMjkgY3NfY2VudGVyIGNzLS1yYWRpdXMgYmctLXdoaXRlXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBpY29uLS1tZWRpdW0gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+ICAgICBcclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiPlJlc3RhdXJhbnQgJmFtcDsgQmFyPC9oMz5cclxuICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0XCI+RXhjZXB0aW9uYWwgZGluaW5nIGF3YWl0cyBhdCBvdXIgcmVzb3J0LiBJbW1lcnNlIHlvdXJzZWxmIGluIGV4cXVpc2l0ZSAgZmxhdm9ycyB3aXRoIHZpZXcgdG8gbWF0Y2guIFB1cmUgaW5kdWxnZW5jZSwgZWZmb3J0bGVzc2x5IGRlbGl2ZXJlZC48L3A+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19pY29uYm94IGNzX3N0eWxlXzMgY3MtLXJhZGl1cyBiZy0td2hpdGVcIj5cclxuICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3hfaWNvbiBjc19tYl8yOSBjc19jZW50ZXIgY3MtLXJhZGl1cyBiZy0td2hpdGVcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIGljb24tLW1lZGl1bSBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gICAgIFxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJ0aXRsZS0tc21hbGwgbWItLTEwXCI+UmVzdGF1cmFudCAmYW1wOyBCYXI8L2gzPlxyXG4gICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHRcIj5FeGNlcHRpb25hbCBkaW5pbmcgYXdhaXRzIGF0IG91ciByZXNvcnQuIEltbWVyc2UgeW91cnNlbGYgaW4gZXhxdWlzaXRlICBmbGF2b3JzIHdpdGggdmlldyB0byBtYXRjaC4gUHVyZSBpbmR1bGdlbmNlLCBlZmZvcnRsZXNzbHkgZGVsaXZlcmVkLjwvcD5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJidG5zX19ib3ggYWxpZ24tLWNlbnRlciBcIj5cclxuICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgXCI+XHJcbiAgICAgICAgICAgICAgPGI+TGVhcm4gTW9yZTwvYj5cclxuICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPiBcclxuICAgICAgICAgIDwvYT5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICBcclxuICA8L3NlY3Rpb24+Il19
20
+ args: [{ selector: 'lib-babylon-features-slider', standalone: true, imports: [CommonModule, BabylonSlidersDirective], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"babylon__features-slider margin-main \">\r\n\r\n <div class=\"cs_slider cs_style_1 cs_slider_gap_30 cs_show_shadow_20\">\r\n <div class=\"container\">\r\n <div class=\"cs_section_heading_wrap_1\">\r\n <div class=\"cs_section_heading cs_style_1 \">\r\n <div class=\"intro_info no-align\">\r\n @if(pretitle){\r\n <h3 class=\"pretitle wow fadeInLeft\" data-wow-duration=\"0.8s\" data-wow-delay=\"0.2s\">{{ pretitle }} </h3>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n\r\n </div>\r\n <div class=\"cs_slider_arrows cs_style_4\">\r\n <div class=\"cs_left_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-left-big\"></span>\r\n </div>\r\n <div class=\" cs_right_arrow slick-arrow cs_center\">\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"cs_full_width_right mb--20\">\r\n <div\r\n class=\"cs_slider_container\"\r\n sliders=\"cs_slider_container\"\r\n data-autoplay=\"0\"\r\n data-loop=\"1\"\r\n data-speed=\"600\"\r\n data-center=\"0\"\r\n data-variable-width=\"1\"\r\n data-slides-per-view=\"responsive\"\r\n data-xs-slides=\"1\"\r\n data-sm-slides=\"2\"\r\n data-md-slides=\"2\"\r\n data-lg-slides=\"3\"\r\n data-add-slides=\"3\"\r\n >\r\n <div class=\"cs_slider_wrapper\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"cs_slide\">\r\n <div class=\"cs_iconbox cs_style_3 cs--radius bg--white\">\r\n @if(item.icon){\r\n <div class=\"cs_iconbox_icon cs_mb_29 cs_center cs--radius bg--white\">\r\n <div class=\"info--icon icon--medium \">\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"item.icon\"\r\n ></i>\r\n </div>\r\n </div>\r\n } @if(item.title){\r\n <h3 class=\"title--small mb--10\">{{ item.title }}</h3>\r\n } @if(item.description){\r\n <p class=\"text\">{{ item.description }}</p>\r\n }\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n @if(button){\r\n <div class=\"btns__box align--center \">\r\n <a\r\n [href]=\"button.url\"\r\n class=\"btn btn_primary \"\r\n >\r\n <b>{{ button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n\r\n </section>\r\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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_iconbox.cs_style_3{box-shadow:0 0 20px 0 var(--cl_shadow);padding:1px 50px 44px;margin-top:62px}@media (max-width: 991px){.cs_iconbox.cs_style_3{padding:1px 30px 34px}}@media (max-width: 374px){.cs_iconbox.cs_style_3{padding:1px 25px 34px}}.cs_iconbox.cs_style_3 .cs_iconbox_icon{height:125px;width:125px;border:1px solid var(--cl_icon);margin-top:-63px}.cs_iconbox.cs_style_3 .cs_iconbox_icon img{width:60px;transition:all 1s ease}.cs_iconbox.cs_style_3:hover .cs_iconbox_icon img{transform:rotateY(360deg)}.babylon__features-slider{overflow:hidden}\n"] }]
21
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { pretitle: [{
22
+ type: Input
23
+ }], title: [{
24
+ type: Input
25
+ }], items: [{
26
+ type: Input
27
+ }], button: [{
28
+ type: Input
29
+ }] } });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1mZWF0dXJlcy1zbGlkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFieWxvbi9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTVHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLCtEQUErRCxDQUFDOzs7QUFVeEcsTUFBTSxPQUFPLDhCQUE4QjtJQU16QyxZQUFvQixHQUFzQjtRQUF0QixRQUFHLEdBQUgsR0FBRyxDQUFtQjtJQUFHLENBQUM7SUFFOUMsZUFBZTtRQUNiLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1FBQzNCLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQztJQUNWLENBQUM7K0dBWlUsOEJBQThCO21HQUE5Qiw4QkFBOEIsMktDYjNDLHduR0FnRkEsa29PRHhFWSxZQUFZLDZIQUFFLHVCQUF1Qjs7NEZBS3BDLDhCQUE4QjtrQkFSMUMsU0FBUzsrQkFDRSw2QkFBNkIsY0FDM0IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLHVCQUF1QixDQUFDLG1CQUcvQix1QkFBdUIsQ0FBQyxNQUFNO3NGQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJhYnlsb25CdXR0b25JIH0gZnJvbSAnLi4vLi4vLi4vaW50ZXJmYWNlcy9iYWJ5bG9uLWJ1dHRvbi5pbnRlcmZhY2UnO1xyXG5pbXBvcnQgeyBCYWJ5bG9uU2xpZGVyc0RpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uL2RpcmVjdGl2ZXMvYmFieWxvbi1zbGlkZXJzL2JhYnlsb24tc2xpZGVycy5kaXJlY3RpdmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1mZWF0dXJlcy1zbGlkZXInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQmFieWxvblNsaWRlcnNEaXJlY3RpdmVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25GZWF0dXJlc1NsaWRlckNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xyXG4gIEBJbnB1dCgpIHByZXRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGl0ZW1zPzogQmFieWxvbkZlYXR1cmVzU2xpZGVySXRlbVtdO1xyXG4gIEBJbnB1dCgpIGJ1dHRvbj86IEJhYnlsb25CdXR0b25JO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XHJcblxyXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICB0aGlzLmNkci5kZXRlY3RDaGFuZ2VzKCk7XHJcbiAgICB9LCAxMDApO1xyXG4gIH1cclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBCYWJ5bG9uRmVhdHVyZXNTbGlkZXJJdGVtIHtcclxuICB0aXRsZT86IHN0cmluZztcclxuICBkZXNjcmlwdGlvbj86IHN0cmluZztcclxuICBpY29uPzogc3RyaW5nO1xyXG59XHJcbiIsIjxzZWN0aW9uIGNsYXNzPVwiYmFieWxvbl9fZmVhdHVyZXMtc2xpZGVyIG1hcmdpbi1tYWluICBcIj5cclxuXHJcbiAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyIGNzX3N0eWxlXzEgY3Nfc2xpZGVyX2dhcF8zMCBjc19zaG93X3NoYWRvd18yMFwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNzX3NlY3Rpb25faGVhZGluZ193cmFwXzFcIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19zZWN0aW9uX2hlYWRpbmcgY3Nfc3R5bGVfMSBcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gbm8tYWxpZ25cIj5cclxuICAgICAgICAgICAgICBAaWYocHJldGl0bGUpe1xyXG4gICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwicHJldGl0bGUgd293IGZhZGVJbkxlZnRcIiBkYXRhLXdvdy1kdXJhdGlvbj1cIjAuOHNcIiBkYXRhLXdvdy1kZWxheT1cIjAuMnNcIj57eyBwcmV0aXRsZSB9fSA8L2gzPlxyXG4gICAgICAgICAgICAgIH0gQGlmKHRpdGxlKXtcclxuICAgICAgICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlXCI+e3sgdGl0bGUgfX08L2gyPlxyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX2Fycm93cyBjc19zdHlsZV80XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19sZWZ0X2Fycm93IHNsaWNrLWFycm93IGNzX2NlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LWxlZnQtYmlnXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cIiBjc19yaWdodF9hcnJvdyBzbGljay1hcnJvdyBjc19jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJjc19mdWxsX3dpZHRoX3JpZ2h0IG1iLS0yMFwiPlxyXG4gICAgICAgICAgPGRpdlxyXG4gICAgICAgICAgICBjbGFzcz1cImNzX3NsaWRlcl9jb250YWluZXJcIlxyXG4gICAgICAgICAgICBzbGlkZXJzPVwiY3Nfc2xpZGVyX2NvbnRhaW5lclwiXHJcbiAgICAgICAgICAgIGRhdGEtYXV0b3BsYXk9XCIwXCJcclxuICAgICAgICAgICAgZGF0YS1sb29wPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc3BlZWQ9XCI2MDBcIlxyXG4gICAgICAgICAgICBkYXRhLWNlbnRlcj1cIjBcIlxyXG4gICAgICAgICAgICBkYXRhLXZhcmlhYmxlLXdpZHRoPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc2xpZGVzLXBlci12aWV3PVwicmVzcG9uc2l2ZVwiXHJcbiAgICAgICAgICAgIGRhdGEteHMtc2xpZGVzPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc20tc2xpZGVzPVwiMlwiXHJcbiAgICAgICAgICAgIGRhdGEtbWQtc2xpZGVzPVwiMlwiXHJcbiAgICAgICAgICAgIGRhdGEtbGctc2xpZGVzPVwiM1wiXHJcbiAgICAgICAgICAgIGRhdGEtYWRkLXNsaWRlcz1cIjNcIlxyXG4gICAgICAgICAgPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX3dyYXBwZXJcIj5cclxuICAgICAgICAgICAgICBAaWYgKGl0ZW1zPy5sZW5ndGgpIHsgQGZvciAoaXRlbSBvZiBpdGVtczsgdHJhY2sgJGluZGV4KSB7XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVcIj5cclxuICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3ggY3Nfc3R5bGVfMyBjcy0tcmFkaXVzIGJnLS13aGl0ZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIEBpZihpdGVtLmljb24pe1xyXG4gICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3hfaWNvbiBjc19tYl8yOSBjc19jZW50ZXIgY3MtLXJhZGl1cyBiZy0td2hpdGVcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIGljb24tLW1lZGl1bSBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJpY29uLS1zdmdcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwiaXRlbS5pY29uXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+PC9pPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICB9IEBpZihpdGVtLnRpdGxlKXtcclxuICAgICAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIj57eyBpdGVtLnRpdGxlIH19PC9oMz5cclxuICAgICAgICAgICAgICAgICAgICB9IEBpZihpdGVtLmRlc2NyaXB0aW9uKXtcclxuICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dFwiPnt7IGl0ZW0uZGVzY3JpcHRpb24gfX08L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgIH0gfVxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIEBpZihidXR0b24pe1xyXG4gICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bnNfX2JveCBhbGlnbi0tY2VudGVyIFwiPlxyXG4gICAgICAgICAgICA8YVxyXG4gICAgICAgICAgICAgIFtocmVmXT1cImJ1dHRvbi51cmxcIlxyXG4gICAgICAgICAgICAgIGNsYXNzPVwiYnRuIGJ0bl9wcmltYXJ5IFwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgIDxiPnt7IGJ1dHRvbi5sYWJlbCB9fTwvYj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIH1cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgPC9zZWN0aW9uPlxyXG4iXX0=
@@ -1,11 +1,26 @@
1
- import { Component } from '@angular/core';
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { BabylonLinkTypeDirective } from '../../../directives/link-type/link-type.directive';
4
+ import { DropdownModule } from 'primeng/dropdown';
2
5
  import * as i0 from "@angular/core";
6
+ import * as i1 from "@angular/common";
7
+ import * as i2 from "primeng/dropdown";
3
8
  export class BabylonRoomsColsComponent {
4
9
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonRoomsColsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonRoomsColsComponent, isStandalone: true, selector: "lib-babylon-rooms-cols", ngImport: i0, template: "<section class=\"babylon__rooms-cols margin-main \"> \r\n <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">Rooms Cols</h2>\r\n <h3 class=\"title\" >Our Exquisite items</h3> \r\n </div> \r\n </div>\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </section>", 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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}\n"] }); }
10
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonRoomsColsComponent, isStandalone: true, selector: "lib-babylon-rooms-cols", inputs: { pretitle: "pretitle", title: "title", items: "items", stFilters: "stFilters", ndFilters: "ndFilters" }, ngImport: i0, template: "<section class=\"babylon__rooms-cols margin-main \">\r\n <div class=\"container margin-main\">\r\n @if (title || pretitle) {\r\n <div class=\"d-flex flex-column align-items-center pb-4\">\r\n @if(pretitle){\r\n <span class=\"pretitle\"> {{ pretitle }} </span>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n }\r\n <div class=\"row justify-content-center filters\">\r\n @if (stFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"stFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"stFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n } @if (ndFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"ndFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"ndFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n }\r\n </div>\r\n <!-- <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">{{ pretitle }}</h2>\r\n <h3 class=\"title\" >{{ title }}</h3>\r\n </div>\r\n </div> -->\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n @if (item.img) {\r\n <img [src]=\"item.img.src\" [alt]=\"item.img.alt\" />\r\n }\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\">\r\n <div class=\"btns__box align--center \">\r\n @if(item.link) {\r\n <a\r\n [href]=\"item.link.url\"\r\n [linkType]=\"item.link.linkType\"\r\n class=\"btn btn_primary btn--light \"\r\n >\r\n <b> {{ item.link.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n } @if(item.button) {\r\n <a\r\n [href]=\"item.button.url\"\r\n [linkType]=\"item.button.linkType\"\r\n class=\"btn btn_call btn--light \"\r\n >\r\n <b> {{ item.button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n }\r\n </div>\r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\">\r\n <div class=\"intro_info \">\r\n @if(item.title){\r\n <h2 class=\"title--small mb--10\">{{ item.title }}</h2>\r\n } @if(item.price){\r\n <h3 class=\"subtitle \"><span class=\"text\">{{ item.priceText }}</span> {{item.price}}\u20AC</h3>\r\n } @if (item.equipment?.length) {\r\n <div class=\"cs_mb_20\">\r\n <ul class=\"cs_card_list cs_mp_0\">\r\n @for (equipment of item.equipment; track $index){\r\n <li>\r\n <div class=\"info--icon \">\r\n @if (equipment.icon) {\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"equipment.icon\"\r\n ></i>\r\n }\r\n </div>\r\n @if (equipment.label) {\r\n <p class=\"text--small\">{{ equipment.label }}</p>\r\n }\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n</section>\r\n", styles: ["@charset \"UTF-8\";: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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}.filters{display:flex;flex-direction:column;align-items:center;gap:30px;padding-bottom:40px}@media (min-width: 768px){.filters{flex-direction:row;justify-content:center}}.dropdown__wrapper{display:flex;flex-direction:column;gap:5px;width:250px}.dropdown{position:relative;width:100%}.dropdown-btn{width:100%;font-family:var(--font-text);font-size:15px;color:var(--cl_dropdown-text);font-weight:300;line-height:20px;text-align:left;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);padding:12px 15px;cursor:pointer;-moz-transition:all .1s ease;-o-transition:all .1s ease;-webkit-transition:all .1s ease;-ms-transition:all .1s ease;transition:all .1s ease}.dropdown-btn:after{content:\"\\203a\";font-size:25px;position:absolute;right:10px;top:50%;transform:translateY(-50%) rotate(90deg) scaleX(1.5)}.dropdown-menu{display:none;position:absolute;width:100%;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);list-style:none;padding:0}.dropdown-menu li{padding:12px 15px;cursor:pointer}.dropdown-menu li:hover{background-color:var(--cl_dropdown-hover);border-radius:var(--cl_dropdown-radius);color:#fff}.dropdown.active .dropdown-menu{display:block}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href"] }, { kind: "ngmodule", type: DropdownModule }, { kind: "component", type: i2.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "autoShowPanelOnPrintableCharacterKeyDown", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
11
  }
7
12
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonRoomsColsComponent, decorators: [{
8
13
  type: Component,
9
- args: [{ selector: 'lib-babylon-rooms-cols', standalone: true, imports: [], template: "<section class=\"babylon__rooms-cols margin-main \"> \r\n <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">Rooms Cols</h2>\r\n <h3 class=\"title\" >Our Exquisite items</h3> \r\n </div> \r\n </div>\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </section>", 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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}\n"] }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1yb29tcy1jb2xzL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tcm9vbXMtY29scy9iYWJ5bG9uLXJvb21zLWNvbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTMUMsTUFBTSxPQUFPLHlCQUF5QjsrR0FBekIseUJBQXlCO21HQUF6Qix5QkFBeUIsa0ZDVHRDLDRtUUF5SVk7OzRGRGhJQyx5QkFBeUI7a0JBUHJDLFNBQVM7K0JBQ0Usd0JBQXdCLGNBQ3RCLElBQUksV0FDUCxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi1iYWJ5bG9uLXJvb21zLWNvbHMnLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW10sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25Sb29tc0NvbHNDb21wb25lbnQge1xyXG5cclxufVxyXG4iLCI8c2VjdGlvbiBjbGFzcz1cImJhYnlsb25fX3Jvb21zLWNvbHMgbWFyZ2luLW1haW4gXCI+ICBcclxuICAgIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBhbGlnbi0tY2VudGVyIG5vLWFsaWduXCI+XHJcbiAgICAgICAgICAgIDxoMiBjbGFzcz1cInByZXRpdGxlIG1iLS0xMFwiPlJvb21zIENvbHM8L2gyPlxyXG4gICAgICAgICAgICA8aDMgY2xhc3M9XCJ0aXRsZVwiID5PdXIgRXhxdWlzaXRlIGl0ZW1zPC9oMz4gICBcclxuICAgICAgICA8L2Rpdj4gICBcclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1mbHVpZCBjc19wbHJfMTAwXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInJvdyBjc19nYXBfeV84MFwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLXhsLTQgY29sLW1kLTZcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkIGNzX3N0eWxlXzcgY3MtLXJhZGl1cyBvdmVyZmxvdy1oaWRkZW5cIj5cclxuICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiI1wiIGNsYXNzPVwiY3NfY2FyZF90aHVtYiBkLWJsb2NrIG92ZXJmbG93LWhpZGRlbiBwb3NpdGlvbi1yZWxhdGl2ZSBjc19wcmltYXJ5X2JnXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ZvdG9zL3Jvb21fNC5qcGVnXCIgYWx0PVwiUm9vbVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImNzX2NhcmRfYnRuIHBvc2l0aW9uLWFic29sdXRlIGNzX3ppbmRleF8yXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bnNfX2JveCBhbGlnbi0tY2VudGVyIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgYnRuLS1saWdodCBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGI+dmVyIGhhYml0YWNpw7NuPC9iPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiBcIiBjbGFzcz1cImJ0biBidG5fY2FsbCBidG4tLWxpZ2h0IFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj5yZXNlcnZhcjwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkX2luZm8gcG9zaXRpb24tcmVsYXRpdmVcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgyIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiID5EZWx1eGUgUm9vbTwvaDI+ICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJzdWJ0aXRsZSAgXCI+PHNwYW4gY2xhc3M9XCJ0ZXh0XCI+RnJvbTwvc3Bhbj4gIDMyMOKCrDwvaDM+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX21iXzIwXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx1bCBjbGFzcz1cImNzX2NhcmRfbGlzdCBjc19tcF8wXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0LS1zbWFsbFwiPjExMCBTcSA8L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0LS1zbWFsbFwiPjMtNSBHdWVzdHMgPC9wPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3VsPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wteGwtNCBjb2wtbWQtNlwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2NhcmQgY3Nfc3R5bGVfNyBjcy0tcmFkaXVzIG92ZXJmbG93LWhpZGRlblwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIjXCIgY2xhc3M9XCJjc19jYXJkX3RodW1iIGQtYmxvY2sgb3ZlcmZsb3ctaGlkZGVuIHBvc2l0aW9uLXJlbGF0aXZlIGNzX3ByaW1hcnlfYmdcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBzcmM9XCIvYXNzZXRzL2JhYnlsb24vZm90b3Mvcm9vbV80LmpwZWdcIiBhbHQ9XCJSb29tXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiY3NfY2FyZF9idG4gcG9zaXRpb24tYWJzb2x1dGUgY3NfemluZGV4XzJcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuc19fYm94IGFsaWduLS1jZW50ZXIgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiBcIiBjbGFzcz1cImJ0biBidG5fcHJpbWFyeSBidG4tLWxpZ2h0IFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj52ZXIgaGFiaXRhY2nDs248L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiIFwiIGNsYXNzPVwiYnRuIGJ0bl9jYWxsIGJ0bi0tbGlnaHQgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPnJlc2VydmFyPC9iPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2NhcmRfaW5mbyBwb3NpdGlvbi1yZWxhdGl2ZVwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDIgY2xhc3M9XCJ0aXRsZS0tc21hbGwgbWItLTEwXCIgPkRlbHV4ZSBSb29tPC9oMj4gICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInN1YnRpdGxlICBcIj48c3BhbiBjbGFzcz1cInRleHRcIj5Gcm9tPC9zcGFuPiAgMzIw4oKsPC9oMz4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfbWJfMjBcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVsIGNsYXNzPVwiY3NfY2FyZF9saXN0IGNzX21wXzBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29uLS1zdmcgaWNvbi1udWV2b19wYXhfaWNvX3NtYWxsIFwiPjwvaT4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQtLXNtYWxsXCI+MTEwIFNxIDwvcD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29uLS1zdmcgaWNvbi1udWV2b19wYXhfaWNvX3NtYWxsIFwiPjwvaT4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQtLXNtYWxsXCI+My01IEd1ZXN0cyA8L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdWw+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNvbC14bC00IGNvbC1tZC02XCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfY2FyZCBjc19zdHlsZV83IGNzLS1yYWRpdXMgb3ZlcmZsb3ctaGlkZGVuXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBjbGFzcz1cImNzX2NhcmRfdGh1bWIgZC1ibG9jayBvdmVyZmxvdy1oaWRkZW4gcG9zaXRpb24tcmVsYXRpdmUgY3NfcHJpbWFyeV9iZ1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8aW1nIHNyYz1cIi9hc3NldHMvYmFieWxvbi9mb3Rvcy9yb29tXzQuanBlZ1wiIGFsdD1cIlJvb21cIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJjc19jYXJkX2J0biBwb3NpdGlvbi1hYnNvbHV0ZSBjc196aW5kZXhfMlwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG5zX19ib3ggYWxpZ24tLWNlbnRlciBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiIFwiIGNsYXNzPVwiYnRuIGJ0bl9wcmltYXJ5IGJ0bi0tbGlnaHQgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPnZlciBoYWJpdGFjacOzbjwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX2NhbGwgYnRuLS1saWdodCBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGI+cmVzZXJ2YXI8L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfY2FyZF9pbmZvIHBvc2l0aW9uLXJlbGF0aXZlXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIiA+RGVsdXhlIFJvb208L2gyPiAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwic3VidGl0bGUgIFwiPjxzcGFuIGNsYXNzPVwidGV4dFwiPkZyb208L3NwYW4+ICAzMjDigqw8L2gzPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19tYl8yMFwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWwgY2xhc3M9XCJjc19jYXJkX2xpc3QgY3NfbXBfMFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dC0tc21hbGxcIj4xMTAgU3EgPC9wPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dC0tc21hbGxcIj4zLTUgR3Vlc3RzIDwvcD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC91bD4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+IFxyXG4gIDwvc2VjdGlvbj4iXX0=
14
+ args: [{ selector: 'lib-babylon-rooms-cols', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, DropdownModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"babylon__rooms-cols margin-main \">\r\n <div class=\"container margin-main\">\r\n @if (title || pretitle) {\r\n <div class=\"d-flex flex-column align-items-center pb-4\">\r\n @if(pretitle){\r\n <span class=\"pretitle\"> {{ pretitle }} </span>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n }\r\n <div class=\"row justify-content-center filters\">\r\n @if (stFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"stFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"stFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n } @if (ndFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"ndFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"ndFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n }\r\n </div>\r\n <!-- <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">{{ pretitle }}</h2>\r\n <h3 class=\"title\" >{{ title }}</h3>\r\n </div>\r\n </div> -->\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n @if (item.img) {\r\n <img [src]=\"item.img.src\" [alt]=\"item.img.alt\" />\r\n }\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\">\r\n <div class=\"btns__box align--center \">\r\n @if(item.link) {\r\n <a\r\n [href]=\"item.link.url\"\r\n [linkType]=\"item.link.linkType\"\r\n class=\"btn btn_primary btn--light \"\r\n >\r\n <b> {{ item.link.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n } @if(item.button) {\r\n <a\r\n [href]=\"item.button.url\"\r\n [linkType]=\"item.button.linkType\"\r\n class=\"btn btn_call btn--light \"\r\n >\r\n <b> {{ item.button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n }\r\n </div>\r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\">\r\n <div class=\"intro_info \">\r\n @if(item.title){\r\n <h2 class=\"title--small mb--10\">{{ item.title }}</h2>\r\n } @if(item.price){\r\n <h3 class=\"subtitle \"><span class=\"text\">{{ item.priceText }}</span> {{item.price}}\u20AC</h3>\r\n } @if (item.equipment?.length) {\r\n <div class=\"cs_mb_20\">\r\n <ul class=\"cs_card_list cs_mp_0\">\r\n @for (equipment of item.equipment; track $index){\r\n <li>\r\n <div class=\"info--icon \">\r\n @if (equipment.icon) {\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"equipment.icon\"\r\n ></i>\r\n }\r\n </div>\r\n @if (equipment.label) {\r\n <p class=\"text--small\">{{ equipment.label }}</p>\r\n }\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n</section>\r\n", styles: ["@charset \"UTF-8\";: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_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}.filters{display:flex;flex-direction:column;align-items:center;gap:30px;padding-bottom:40px}@media (min-width: 768px){.filters{flex-direction:row;justify-content:center}}.dropdown__wrapper{display:flex;flex-direction:column;gap:5px;width:250px}.dropdown{position:relative;width:100%}.dropdown-btn{width:100%;font-family:var(--font-text);font-size:15px;color:var(--cl_dropdown-text);font-weight:300;line-height:20px;text-align:left;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);padding:12px 15px;cursor:pointer;-moz-transition:all .1s ease;-o-transition:all .1s ease;-webkit-transition:all .1s ease;-ms-transition:all .1s ease;transition:all .1s ease}.dropdown-btn:after{content:\"\\203a\";font-size:25px;position:absolute;right:10px;top:50%;transform:translateY(-50%) rotate(90deg) scaleX(1.5)}.dropdown-menu{display:none;position:absolute;width:100%;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);list-style:none;padding:0}.dropdown-menu li{padding:12px 15px;cursor:pointer}.dropdown-menu li:hover{background-color:var(--cl_dropdown-hover);border-radius:var(--cl_dropdown-radius);color:#fff}.dropdown.active .dropdown-menu{display:block}\n"] }]
15
+ }], propDecorators: { pretitle: [{
16
+ type: Input
17
+ }], title: [{
18
+ type: Input
19
+ }], items: [{
20
+ type: Input
21
+ }], stFilters: [{
22
+ type: Input
23
+ }], ndFilters: [{
24
+ type: Input
25
+ }] } });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1yb29tcy1jb2xzL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tcm9vbXMtY29scy9iYWJ5bG9uLXJvb21zLWNvbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHMUUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQVdsRCxNQUFNLE9BQU8seUJBQXlCOytHQUF6Qix5QkFBeUI7bUdBQXpCLHlCQUF5QixvTUNoQnRDLDRwS0E2R0EsNnNZRGxHWSxZQUFZLDZIQUFFLHdCQUF3QixvRkFBRSxjQUFjOzs0RkFLckQseUJBQXlCO2tCQVJyQyxTQUFTOytCQUNFLHdCQUF3QixjQUN0QixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsd0JBQXdCLEVBQUUsY0FBYyxDQUFDLG1CQUdoRCx1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQmFieWxvbkJ1dHRvbkkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24tYnV0dG9uLmludGVyZmFjZSc7XHJcbmltcG9ydCB7IEJhYnlsb25JbWFnZUkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24taW1hZ2UuaW50ZXJmYWNlJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQmFieWxvbkxpbmtUeXBlRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vZGlyZWN0aXZlcy9saW5rLXR5cGUvbGluay10eXBlLmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7IERyb3Bkb3duTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kcm9wZG93bic7XHJcbmltcG9ydCB7IEJhYnlsb25Ecm9wZG93bkkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24tZHJvcGRvd24uaW50ZXJmYWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWJhYnlsb24tcm9vbXMtY29scycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBCYWJ5bG9uTGlua1R5cGVEaXJlY3RpdmUsIERyb3Bkb3duTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25Sb29tc0NvbHNDb21wb25lbnQge1xyXG4gIEBJbnB1dCgpIHByZXRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGl0ZW1zPzogQmFieWxvblJvb21zTGlzdEl0ZW1bXTtcclxuICBASW5wdXQoKSBzdEZpbHRlcnM/OiBCYWJ5bG9uRHJvcGRvd25JO1xyXG4gIEBJbnB1dCgpIG5kRmlsdGVycz86IEJhYnlsb25Ecm9wZG93bkk7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQmFieWxvblJvb21zTGlzdEl0ZW0ge1xyXG4gICAgYnV0dG9uPzogQmFieWxvbkJ1dHRvbkk7XHJcbiAgICBsaW5rPzogQmFieWxvbkJ1dHRvbkk7XHJcbiAgICBpbWc/OiBCYWJ5bG9uSW1hZ2VJO1xyXG4gICAgdGl0bGU/OiBzdHJpbmc7XHJcbiAgICBwcmV0aXRsZT86IHN0cmluZztcclxuICAgIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xyXG4gICAgZXF1aXBtZW50PzogQmFieWxvblJvb21zTGlzdEVxdWlwbWVudFtdO1xyXG4gICAgYmVkcm9vbUZpbHRlcklkPzogbnVtYmVyO1xyXG4gICAgY2hhcmFjdGVyaXN0aWNzRmlsdGVySWQ/OiBudW1iZXI7XHJcbiAgICBwcmljZT86IG51bWJlcjtcclxuICAgIHByaWNlVGV4dD86IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBCYWJ5bG9uUm9vbXNMaXN0RXF1aXBtZW50IHtcclxuICAgIGljb24/OiBzdHJpbmc7XHJcbiAgICBsYWJlbD86IHN0cmluZztcclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBEcm9wZG93bk9wdGlvbiB7XHJcbiAgY29kZT86IG51bWJlcjtcclxuICBuYW1lPzogc3RyaW5nO1xyXG59XHJcbiIsIjxzZWN0aW9uIGNsYXNzPVwiYmFieWxvbl9fcm9vbXMtY29scyBtYXJnaW4tbWFpbiBcIj5cclxuICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyIG1hcmdpbi1tYWluXCI+XHJcbiAgICBAaWYgKHRpdGxlIHx8IHByZXRpdGxlKSB7XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJkLWZsZXggZmxleC1jb2x1bW4gYWxpZ24taXRlbXMtY2VudGVyIHBiLTRcIj5cclxuICAgICAgICBAaWYocHJldGl0bGUpe1xyXG4gICAgICAgICAgPHNwYW4gY2xhc3M9XCJwcmV0aXRsZVwiPiB7eyBwcmV0aXRsZSB9fSA8L3NwYW4+XHJcbiAgICAgICAgfSBAaWYodGl0bGUpe1xyXG4gICAgICAgICAgPGgyIGNsYXNzPVwidGl0bGVcIj57eyB0aXRsZSB9fTwvaDI+XHJcbiAgICAgICAgfVxyXG4gICAgICA8L2Rpdj5cclxuICAgIH1cclxuICAgIDxkaXYgY2xhc3M9XCJyb3cganVzdGlmeS1jb250ZW50LWNlbnRlciBmaWx0ZXJzXCI+XHJcbiAgICAgIEBpZiAoc3RGaWx0ZXJzKSB7XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImRyb3Bkb3duX193cmFwcGVyXCI+XHJcbiAgICAgICAgICAgIDxwLWRyb3Bkb3duXHJcbiAgICAgICAgICAgICAgY2xhc3M9XCJkcm9wZG93blwiXHJcbiAgICAgICAgICAgICAgW29wdGlvbnNdPVwic3RGaWx0ZXJzLm9wdGlvbnNcIlxyXG4gICAgICAgICAgICAgIG9wdGlvbkxhYmVsPVwibmFtZVwiXHJcbiAgICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cInN0RmlsdGVycy5wbGFjZWhvbGRlclwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgICAgPC9wLWRyb3Bkb3duPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICB9IEBpZiAobmRGaWx0ZXJzKSB7XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImRyb3Bkb3duX193cmFwcGVyXCI+XHJcbiAgICAgICAgICAgIDxwLWRyb3Bkb3duXHJcbiAgICAgICAgICAgICAgY2xhc3M9XCJkcm9wZG93blwiXHJcbiAgICAgICAgICAgICAgW29wdGlvbnNdPVwibmRGaWx0ZXJzLm9wdGlvbnNcIlxyXG4gICAgICAgICAgICAgIG9wdGlvbkxhYmVsPVwibmFtZVwiXHJcbiAgICAgICAgICAgICAgW3BsYWNlaG9sZGVyXT1cIm5kRmlsdGVycy5wbGFjZWhvbGRlclwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgICAgPC9wLWRyb3Bkb3duPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICB9XHJcbiAgICA8L2Rpdj5cclxuICAgIDwhLS0gPGRpdiBjbGFzcz1cImNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIGFsaWduLS1jZW50ZXIgbm8tYWxpZ25cIj5cclxuICAgICAgICAgICAgPGgyIGNsYXNzPVwicHJldGl0bGUgbWItLTEwXCI+e3sgcHJldGl0bGUgfX08L2gyPlxyXG4gICAgICAgICAgICA8aDMgY2xhc3M9XCJ0aXRsZVwiID57eyB0aXRsZSB9fTwvaDM+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj4gLS0+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyLWZsdWlkIGNzX3Bscl8xMDBcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwicm93IGNzX2dhcF95XzgwXCI+XHJcbiAgICAgICAgICBAaWYgKGl0ZW1zPy5sZW5ndGgpIHsgQGZvciAoaXRlbSBvZiBpdGVtczsgdHJhY2sgJGluZGV4KSB7XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wteGwtNCBjb2wtbWQtNlwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2NhcmQgY3Nfc3R5bGVfNyBjcy0tcmFkaXVzIG92ZXJmbG93LWhpZGRlblwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIjXCIgY2xhc3M9XCJjc19jYXJkX3RodW1iIGQtYmxvY2sgb3ZlcmZsb3ctaGlkZGVuIHBvc2l0aW9uLXJlbGF0aXZlIGNzX3ByaW1hcnlfYmdcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChpdGVtLmltZykge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgW3NyY109XCJpdGVtLmltZy5zcmNcIiBbYWx0XT1cIml0ZW0uaW1nLmFsdFwiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJjc19jYXJkX2J0biBwb3NpdGlvbi1hYnNvbHV0ZSBjc196aW5kZXhfMlwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bnNfX2JveCBhbGlnbi0tY2VudGVyIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBpZihpdGVtLmxpbmspIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtocmVmXT1cIml0ZW0ubGluay51cmxcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbGlua1R5cGVdPVwiaXRlbS5saW5rLmxpbmtUeXBlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgYnRuLS1saWdodCBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPiB7eyBpdGVtLmxpbmsubGFiZWwgfX08L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IEBpZihpdGVtLmJ1dHRvbikge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2hyZWZdPVwiaXRlbS5idXR0b24udXJsXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2xpbmtUeXBlXT1cIml0ZW0uYnV0dG9uLmxpbmtUeXBlXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJidG4gYnRuX2NhbGwgYnRuLS1saWdodCBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPiB7eyBpdGVtLmJ1dHRvbi5sYWJlbCB9fTwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkX2luZm8gcG9zaXRpb24tcmVsYXRpdmVcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYoaXRlbS50aXRsZSl7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIj57eyBpdGVtLnRpdGxlIH19PC9oMj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gQGlmKGl0ZW0ucHJpY2Upe1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJzdWJ0aXRsZSAgXCI+PHNwYW4gY2xhc3M9XCJ0ZXh0XCI+e3sgaXRlbS5wcmljZVRleHQgfX08L3NwYW4+ICB7e2l0ZW0ucHJpY2V9feKCrDwvaDM+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IEBpZiAoaXRlbS5lcXVpcG1lbnQ/Lmxlbmd0aCkge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfbWJfMjBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx1bCBjbGFzcz1cImNzX2NhcmRfbGlzdCBjc19tcF8wXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBmb3IgKGVxdWlwbWVudCBvZiBpdGVtLmVxdWlwbWVudDsgdHJhY2sgJGluZGV4KXtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAoZXF1aXBtZW50Lmljb24pIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiaWNvbi0tc3ZnXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW25nQ2xhc3NdPVwiZXF1aXBtZW50Lmljb25cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPjwvaT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKGVxdWlwbWVudC5sYWJlbCkge1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dC0tc21hbGxcIj57eyBlcXVpcG1lbnQubGFiZWwgfX08L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3VsPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICB9IH1cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L3NlY3Rpb24+XHJcbiJdfQ==