ctt-babylon 0.0.151 → 0.0.153

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 (28) hide show
  1. package/esm2022/lib/components/core/babylon-banner-info/babylon-banner-info.component.mjs +24 -6
  2. package/esm2022/lib/components/core/babylon-breadcrumb/babylon-breadcrumb.component.mjs +14 -5
  3. package/esm2022/lib/components/core/babylon-features-slider/babylon-features-slider.component.mjs +25 -6
  4. package/esm2022/lib/components/core/babylon-header-book-show/babylon-header-book-show.component.mjs +2 -2
  5. package/esm2022/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.mjs +20 -5
  6. package/esm2022/lib/directives/babylon-sliders/babylon-sliders.directive.mjs +90 -0
  7. package/esm2022/lib/directives/link-type/link-type.directive.mjs +36 -0
  8. package/esm2022/lib/interfaces/babylon-banner-info.interface.mjs +2 -0
  9. package/esm2022/lib/interfaces/babylon-breadcrumb.interface.mjs +2 -0
  10. package/esm2022/lib/interfaces/babylon-dropdown.interface.mjs +2 -0
  11. package/esm2022/lib/interfaces/babylon-features-slider.interface.mjs +2 -0
  12. package/esm2022/lib/interfaces/babylon-rooms-cols.interface.mjs +2 -0
  13. package/esm2022/public-api.mjs +5 -1
  14. package/fesm2022/ctt-babylon.mjs +198 -26
  15. package/fesm2022/ctt-babylon.mjs.map +1 -1
  16. package/lib/components/core/babylon-banner-info/babylon-banner-info.component.d.ts +13 -2
  17. package/lib/components/core/babylon-breadcrumb/babylon-breadcrumb.component.d.ts +4 -1
  18. package/lib/components/core/babylon-features-slider/babylon-features-slider.component.d.ts +16 -2
  19. package/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.d.ts +29 -1
  20. package/lib/directives/babylon-sliders/babylon-sliders.directive.d.ts +11 -0
  21. package/lib/directives/link-type/link-type.directive.d.ts +11 -0
  22. package/lib/interfaces/babylon-banner-info.interface.d.ts +9 -0
  23. package/lib/interfaces/babylon-breadcrumb.interface.d.ts +4 -0
  24. package/lib/interfaces/babylon-dropdown.interface.d.ts +7 -0
  25. package/lib/interfaces/babylon-features-slider.interface.d.ts +8 -0
  26. package/lib/interfaces/babylon-rooms-cols.interface.d.ts +9 -0
  27. package/package.json +1 -1
  28. package/public-api.d.ts +4 -0
@@ -1,11 +1,29 @@
1
- import { Component } from '@angular/core';
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  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: [""] }); }
4
+ constructor(cdr) {
5
+ this.cdr = cdr;
6
+ }
7
+ ngAfterViewInit() {
8
+ setTimeout(() => {
9
+ this.cdr.detectChanges();
10
+ }, 100);
11
+ }
12
+ 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 }); }
13
+ 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: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
14
  }
7
15
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBannerInfoComponent, decorators: [{
8
16
  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=
17
+ args: [{ selector: 'lib-babylon-banner-info', standalone: true, imports: [], 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" }]
18
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { pretitle: [{
19
+ type: Input
20
+ }], title: [{
21
+ type: Input
22
+ }], description: [{
23
+ type: Input
24
+ }], button: [{
25
+ type: Input
26
+ }], image: [{
27
+ type: Input
28
+ }] } });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYmFubmVyLWluZm8vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQWE1RyxNQUFNLE9BQU8sMEJBQTBCO0lBT3JDLFlBQW9CLEdBQXNCO1FBQXRCLFFBQUcsR0FBSCxHQUFHLENBQW1CO0lBQUcsQ0FBQztJQUU5QyxlQUFlO1FBQ2IsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUNkLElBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0IsQ0FBQyxFQUFFLEdBQUcsQ0FBQyxDQUFDO0lBQ1YsQ0FBQzsrR0FiVSwwQkFBMEI7bUdBQTFCLDBCQUEwQixtTUNidkMsbzVDQWdDQTs7NEZEbkJhLDBCQUEwQjtrQkFSdEMsU0FBUzsrQkFDRSx5QkFBeUIsY0FDdkIsSUFBSSxXQUNQLEVBQUUsbUJBR00sdUJBQXVCLENBQUMsTUFBTTtzRkFHdEMsUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJhYnlsb25CdXR0b25JIH0gZnJvbSAnLi4vLi4vLi4vaW50ZXJmYWNlcy9iYWJ5bG9uLWJ1dHRvbi5pbnRlcmZhY2UnO1xyXG5pbXBvcnQgeyBCYWJ5bG9uSW1hZ2VJIH0gZnJvbSAnLi4vLi4vLi4vaW50ZXJmYWNlcy9iYWJ5bG9uLWltYWdlLmludGVyZmFjZSc7XHJcblxyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1iYW5uZXItaW5mbycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1iYW5uZXItaW5mby5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tYmFubmVyLWluZm8uY29tcG9uZW50LnNjc3MnLFxyXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxyXG59KVxyXG5leHBvcnQgY2xhc3MgQmFieWxvbkJhbm5lckluZm9Db21wb25lbnQgaW1wbGVtZW50cyBBZnRlclZpZXdJbml0IHtcclxuICBASW5wdXQoKSBwcmV0aXRsZT86IHN0cmluZztcclxuICBASW5wdXQoKSB0aXRsZT86IHN0cmluZztcclxuICBASW5wdXQoKSBkZXNjcmlwdGlvbj86IHN0cmluZztcclxuICBASW5wdXQoKSBidXR0b24/OiBCYWJ5bG9uQnV0dG9uSTtcclxuICBASW5wdXQoKSBpbWFnZT86IEJhYnlsb25JbWFnZUk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgY2RyOiBDaGFuZ2VEZXRlY3RvclJlZikge31cclxuXHJcbiAgbmdBZnRlclZpZXdJbml0KCkge1xyXG4gICAgc2V0VGltZW91dCgoKSA9PiB7XHJcbiAgICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcclxuICAgIH0sIDEwMCk7XHJcbiAgfVxyXG5cclxufVxyXG4iLCIgICA8IS0tICBMYSBmb3RvIGVzIG9wY2lvbmFsIC0tPlxyXG4gICA8c2VjdGlvbiBjbGFzcz1cImJhYnlsb25fX2Jhbm5lci1pbmZvIG1hcmdpbi1tYWluXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiIG1hcmdpbi1tYWluIGNzX2JnX2ZpbGVkIGJnLS13aGl0ZVwiIFthdHRyLmRhdGEtc3JjXT1cImltYWdlPy5zcmNcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lclwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJyb3dcIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wteHhsLTggb2Zmc2V0LXh4bC0yIGNvbC14bC0xMCBvZmZzZXQteGwtMVwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfbmV3c2xldHRlciBjc19zdHlsZV8xIHRleHQtY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gYWxpZ24tLWNlbnRlciBpbnRyb19pbmZvLS1saWdodCBuby1hbGlnblwiPlxyXG4gICAgICAgICAgICAgICAgICBAaWYocHJldGl0bGUpe1xyXG4gICAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInByZXRpdGxlXCI+e3sgcHJldGl0bGUgfX08L2gzPlxyXG4gICAgICAgICAgICAgICAgICB9IEBpZih0aXRsZSl7XHJcbiAgICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiID57eyB0aXRsZSB9fTwvaDM+XHJcbiAgICAgICAgICAgICAgICAgIH0gQGlmKGRlc2NyaXB0aW9uKXtcclxuICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQgbWItLTEwXCI+e3sgZGVzY3JpcHRpb24gfX08L3A+XHJcbiAgICAgICAgICAgICAgICAgIH0gQGlmKGJ1dHRvbil7XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bnNfX2JveCBhbGlnbi0tY2VudGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxhXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgW2hyZWZdPVwiYnV0dG9uLnVybFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgYnRuLS1saWdodFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPnt7IGJ1dHRvbi5sYWJlbCB9fTwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIDwvc2VjdGlvbj5cclxuIl19
@@ -1,11 +1,20 @@
1
- import { Component } from '@angular/core';
1
+ import { Component, Input } from '@angular/core';
2
+ import { RouterModule } from '@angular/router';
3
+ import { CommonModule } from '@angular/common';
2
4
  import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/common";
6
+ import * as i2 from "@angular/router";
3
7
  export class BabylonBreadcrumbComponent {
8
+ linkClick(e) {
9
+ e.preventDefault();
10
+ }
4
11
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonBreadcrumbComponent, isStandalone: true, selector: "lib-babylon-breadcrumb", ngImport: i0, template: "<section class=\"babylon__breadcrump\">\r\n <div class=\"container-fluid cs_plr_100\">\r\n <ol class=\"breadcrump\"> \r\n <li class=\"breadcrump__element\" >\r\n <a class=\"breadcrump__item\" href=\"\">home</a>\r\n </li>\r\n <li class=\"breadcrump__element breadcrump__element--active\" >\r\n <a class=\"breadcrump__item\" href=\"\">item 1</a>\r\n </li>\r\n </ol>\r\n </div> \r\n</section>", styles: [".breadcrump{align-items:center;justify-content:flex-end;display:flex;margin-bottom:24px}.breadcrump__element{cursor:pointer;position:relative}.breadcrump__element:before{content:\"\";display:block;position:absolute;bottom:1px;left:12px;width:0;height:1px;background-color:var(--cl_breadcrumb)}.breadcrump__element:not(:last-child):after{content:\"/\";display:inline-block;vertical-align:middle;font-size:10px;font-weight:600;color:var(--cl_breadcrumb);letter-spacing:.02em;box-sizing:border-box}.breadcrump__element:hover{color:var(--cl_breadcrumb-hover)}.breadcrump__element:hover:before{width:calc(100% - 24px);background-color:var(--cl_breadcrumb-hover)}.breadcrump__element--active:before{width:calc(100% - 24px)}.breadcrump__item{padding:0 6px;font-size:12px;font-weight:300;color:var(--cl_breadcrumb);letter-spacing:.02em}.breadcrump__item:hover{color:var(--cl_breadcrumb-hover)}\n"] }); }
12
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonBreadcrumbComponent, isStandalone: true, selector: "lib-babylon-breadcrumb", inputs: { links: "links" }, ngImport: i0, template: "@if (links?.length) {\r\n <section class=\"auroa__breadcrump\">\r\n <div class=\"container-fluid\">\r\n <ol class=\"breadcrump\">\r\n @for (link of links; track $index; let last = $last) {\r\n <li class=\"breadcrump__element\">\r\n <a\r\n class=\"breadcrump__item\"\r\n [ngClass]=\"{ 'breadcrump__element--active': last }\"\r\n [href]=\"link.url\"\r\n [routerLink]=\"link.url\"\r\n (click)=\"linkClick($event)\"\r\n >{{ link.label }}</a\r\n >\r\n </li>\r\n \r\n }\r\n </ol>\r\n </div>\r\n </section>\r\n \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}.breadcrump{align-items:center;justify-content:flex-end;display:flex;margin-bottom:24px}.breadcrump__element{cursor:pointer;position:relative}.breadcrump__element:before{content:\"\";display:block;position:absolute;bottom:1px;left:12px;width:0;height:1px;background-color:var(--cl_breadcrumb)}.breadcrump__element:not(:last-child):after{content:\"/\";display:inline-block;vertical-align:middle;font-size:10px;font-weight:600;color:var(--cl_breadcrumb);letter-spacing:.02em;box-sizing:border-box}.breadcrump__element:hover{color:var(--cl_breadcrumb-hover)}.breadcrump__element:hover:before{width:calc(100% - 24px);background-color:var(--cl_breadcrumb-hover)}.breadcrump__element--active:before{width:calc(100% - 24px)}.breadcrump__item{padding:0 6px;font-size:12px;font-weight:300;color:var(--cl_breadcrumb);letter-spacing:.02em}.breadcrump__item:hover{color:var(--cl_breadcrumb-hover)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "ngmodule", type: RouterModule }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] }); }
6
13
  }
7
14
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonBreadcrumbComponent, decorators: [{
8
15
  type: Component,
9
- args: [{ selector: 'lib-babylon-breadcrumb', standalone: true, imports: [], template: "<section class=\"babylon__breadcrump\">\r\n <div class=\"container-fluid cs_plr_100\">\r\n <ol class=\"breadcrump\"> \r\n <li class=\"breadcrump__element\" >\r\n <a class=\"breadcrump__item\" href=\"\">home</a>\r\n </li>\r\n <li class=\"breadcrump__element breadcrump__element--active\" >\r\n <a class=\"breadcrump__item\" href=\"\">item 1</a>\r\n </li>\r\n </ol>\r\n </div> \r\n</section>", styles: [".breadcrump{align-items:center;justify-content:flex-end;display:flex;margin-bottom:24px}.breadcrump__element{cursor:pointer;position:relative}.breadcrump__element:before{content:\"\";display:block;position:absolute;bottom:1px;left:12px;width:0;height:1px;background-color:var(--cl_breadcrumb)}.breadcrump__element:not(:last-child):after{content:\"/\";display:inline-block;vertical-align:middle;font-size:10px;font-weight:600;color:var(--cl_breadcrumb);letter-spacing:.02em;box-sizing:border-box}.breadcrump__element:hover{color:var(--cl_breadcrumb-hover)}.breadcrump__element:hover:before{width:calc(100% - 24px);background-color:var(--cl_breadcrumb-hover)}.breadcrump__element--active:before{width:calc(100% - 24px)}.breadcrump__item{padding:0 6px;font-size:12px;font-weight:300;color:var(--cl_breadcrumb);letter-spacing:.02em}.breadcrump__item:hover{color:var(--cl_breadcrumb-hover)}\n"] }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1icmVhZGNydW1iLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1icmVhZGNydW1iL2JhYnlsb24tYnJlYWRjcnVtYi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYnJlYWRjcnVtYi9iYWJ5bG9uLWJyZWFkY3J1bWIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTMUMsTUFBTSxPQUFPLDBCQUEwQjsrR0FBMUIsMEJBQTBCO21HQUExQiwwQkFBMEIsa0ZDVHZDLHVlQVdVOzs0RkRGRywwQkFBMEI7a0JBUHRDLFNBQVM7K0JBQ0Usd0JBQXdCLGNBQ3RCLElBQUksV0FDUCxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi1iYWJ5bG9uLWJyZWFkY3J1bWInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW10sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2JhYnlsb24tYnJlYWRjcnVtYi5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tYnJlYWRjcnVtYi5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25CcmVhZGNydW1iQ29tcG9uZW50IHtcclxuXHJcbn1cclxuIiwiPHNlY3Rpb24gY2xhc3M9XCJiYWJ5bG9uX19icmVhZGNydW1wXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyLWZsdWlkIGNzX3Bscl8xMDBcIj5cclxuICAgICAgICA8b2wgY2xhc3M9XCJicmVhZGNydW1wXCI+IFxyXG4gICAgICAgICAgICA8bGkgIGNsYXNzPVwiYnJlYWRjcnVtcF9fZWxlbWVudFwiID5cclxuICAgICAgICAgICAgICAgIDxhIGNsYXNzPVwiYnJlYWRjcnVtcF9faXRlbVwiIGhyZWY9XCJcIj5ob21lPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICA8bGkgIGNsYXNzPVwiYnJlYWRjcnVtcF9fZWxlbWVudCBicmVhZGNydW1wX19lbGVtZW50LS1hY3RpdmVcIiA+XHJcbiAgICAgICAgICAgICAgICA8YSBjbGFzcz1cImJyZWFkY3J1bXBfX2l0ZW1cIiBocmVmPVwiXCI+aXRlbSAxPC9hPlxyXG4gICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgIDwvb2w+XHJcbiAgICA8L2Rpdj4gXHJcbjwvc2VjdGlvbj4iXX0=
16
+ args: [{ selector: 'lib-babylon-breadcrumb', standalone: true, imports: [CommonModule, RouterModule], template: "@if (links?.length) {\r\n <section class=\"auroa__breadcrump\">\r\n <div class=\"container-fluid\">\r\n <ol class=\"breadcrump\">\r\n @for (link of links; track $index; let last = $last) {\r\n <li class=\"breadcrump__element\">\r\n <a\r\n class=\"breadcrump__item\"\r\n [ngClass]=\"{ 'breadcrump__element--active': last }\"\r\n [href]=\"link.url\"\r\n [routerLink]=\"link.url\"\r\n (click)=\"linkClick($event)\"\r\n >{{ link.label }}</a\r\n >\r\n </li>\r\n \r\n }\r\n </ol>\r\n </div>\r\n </section>\r\n \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}.breadcrump{align-items:center;justify-content:flex-end;display:flex;margin-bottom:24px}.breadcrump__element{cursor:pointer;position:relative}.breadcrump__element:before{content:\"\";display:block;position:absolute;bottom:1px;left:12px;width:0;height:1px;background-color:var(--cl_breadcrumb)}.breadcrump__element:not(:last-child):after{content:\"/\";display:inline-block;vertical-align:middle;font-size:10px;font-weight:600;color:var(--cl_breadcrumb);letter-spacing:.02em;box-sizing:border-box}.breadcrump__element:hover{color:var(--cl_breadcrumb-hover)}.breadcrump__element:hover:before{width:calc(100% - 24px);background-color:var(--cl_breadcrumb-hover)}.breadcrump__element--active:before{width:calc(100% - 24px)}.breadcrump__item{padding:0 6px;font-size:12px;font-weight:300;color:var(--cl_breadcrumb);letter-spacing:.02em}.breadcrump__item:hover{color:var(--cl_breadcrumb-hover)}\n"] }]
17
+ }], propDecorators: { links: [{
18
+ type: Input
19
+ }] } });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1icmVhZGNydW1iLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1icmVhZGNydW1iL2JhYnlsb24tYnJlYWRjcnVtYi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tYnJlYWRjcnVtYi9iYWJ5bG9uLWJyZWFkY3J1bWIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFakQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7OztBQVMvQyxNQUFNLE9BQU8sMEJBQTBCO0lBSXJDLFNBQVMsQ0FBQyxDQUFRO1FBQ2QsQ0FBQyxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQ3ZCLENBQUM7K0dBTlUsMEJBQTBCO21HQUExQiwwQkFBMEIsOEdDWnZDLCt4QkFxQkssNjhPRGJPLFlBQVksNEhBQUUsWUFBWTs7NEZBSXpCLDBCQUEwQjtrQkFQdEMsU0FBUzsrQkFDRSx3QkFBd0IsY0FDdEIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLFlBQVksQ0FBQzs4QkFNNUIsS0FBSztzQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBCYWJ5bG9uQnV0dG9uSSB9IGZyb20gJy4uLy4uLy4uL2ludGVyZmFjZXMvYmFieWxvbi1idXR0b24uaW50ZXJmYWNlJztcclxuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWJhYnlsb24tYnJlYWRjcnVtYicsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBSb3V0ZXJNb2R1bGVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9iYWJ5bG9uLWJyZWFkY3J1bWIuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsOiAnLi9iYWJ5bG9uLWJyZWFkY3J1bWIuY29tcG9uZW50LnNjc3MnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBCYWJ5bG9uQnJlYWRjcnVtYkNvbXBvbmVudCB7XHJcblxyXG4gIEBJbnB1dCgpIGxpbmtzPzogQmFieWxvbkJ1dHRvbklbXTtcclxuXHJcbiAgbGlua0NsaWNrKGU6IEV2ZW50KSB7XHJcbiAgICAgIGUucHJldmVudERlZmF1bHQoKTtcclxuICB9XHJcbn1cclxuIiwiQGlmIChsaW5rcz8ubGVuZ3RoKSB7XHJcbiAgICA8c2VjdGlvbiBjbGFzcz1cImF1cm9hX19icmVhZGNydW1wXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1mbHVpZFwiPlxyXG4gICAgICAgICAgICA8b2wgY2xhc3M9XCJicmVhZGNydW1wXCI+XHJcbiAgICAgICAgICAgICAgICBAZm9yIChsaW5rIG9mIGxpbmtzOyB0cmFjayAkaW5kZXg7IGxldCBsYXN0ID0gJGxhc3QpIHtcclxuICAgICAgICAgICAgICAgIDxsaSBjbGFzcz1cImJyZWFkY3J1bXBfX2VsZW1lbnRcIj5cclxuICAgICAgICAgICAgICAgICAgICA8YVxyXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImJyZWFkY3J1bXBfX2l0ZW1cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdicmVhZGNydW1wX19lbGVtZW50LS1hY3RpdmUnOiBsYXN0IH1cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICBbaHJlZl09XCJsaW5rLnVybFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtyb3V0ZXJMaW5rXT1cImxpbmsudXJsXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgKGNsaWNrKT1cImxpbmtDbGljaygkZXZlbnQpXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgPnt7IGxpbmsubGFiZWwgfX08L2FcclxuICAgICAgICAgICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgXHJcbiAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgIDwvb2w+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L3NlY3Rpb24+XHJcbiAgICBcclxuICAgIH0iXX0=
@@ -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 <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 <h3 class=\"title--small mb--10\">{{ item.title }}</h3>\r\n <p class=\"text\">{{ item.description }}</p>\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 <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 <h3 class=\"title--small mb--10\">{{ item.title }}</h3>\r\n <p class=\"text\">{{ item.description }}</p>\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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1mZWF0dXJlcy1zbGlkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYmFieWxvbi9zcmMvbGliL2NvbXBvbmVudHMvY29yZS9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQWlCLHVCQUF1QixFQUFxQixTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRTVHLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLCtEQUErRCxDQUFDOzs7QUFVeEcsTUFBTSxPQUFPLDhCQUE4QjtJQU16QyxZQUFvQixHQUFzQjtRQUF0QixRQUFHLEdBQUgsR0FBRyxDQUFtQjtJQUFHLENBQUM7SUFFOUMsZUFBZTtRQUNiLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO1FBQzNCLENBQUMsRUFBRSxHQUFHLENBQUMsQ0FBQztJQUNWLENBQUM7K0dBWlUsOEJBQThCO21HQUE5Qiw4QkFBOEIsMktDYjNDLDQ4RkE0RUEsa29PRHBFWSxZQUFZLDZIQUFFLHVCQUF1Qjs7NEZBS3BDLDhCQUE4QjtrQkFSMUMsU0FBUzsrQkFDRSw2QkFBNkIsY0FDM0IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLHVCQUF1QixDQUFDLG1CQUcvQix1QkFBdUIsQ0FBQyxNQUFNO3NGQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQWZ0ZXJWaWV3SW5pdCwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENoYW5nZURldGVjdG9yUmVmLCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEJhYnlsb25CdXR0b25JIH0gZnJvbSAnLi4vLi4vLi4vaW50ZXJmYWNlcy9iYWJ5bG9uLWJ1dHRvbi5pbnRlcmZhY2UnO1xyXG5pbXBvcnQgeyBCYWJ5bG9uU2xpZGVyc0RpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uL2RpcmVjdGl2ZXMvYmFieWxvbi1zbGlkZXJzL2JhYnlsb24tc2xpZGVycy5kaXJlY3RpdmUnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYmFieWxvbi1mZWF0dXJlcy1zbGlkZXInLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgQmFieWxvblNsaWRlcnNEaXJlY3RpdmVdLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9iYWJ5bG9uLWZlYXR1cmVzLXNsaWRlci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tZmVhdHVyZXMtc2xpZGVyLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25GZWF0dXJlc1NsaWRlckNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xyXG4gIEBJbnB1dCgpIHByZXRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGl0ZW1zPzogQmFieWxvbkZlYXR1cmVzU2xpZGVySXRlbVtdO1xyXG4gIEBJbnB1dCgpIGJ1dHRvbj86IEJhYnlsb25CdXR0b25JO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XHJcblxyXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpIHtcclxuICAgIHNldFRpbWVvdXQoKCkgPT4ge1xyXG4gICAgICB0aGlzLmNkci5kZXRlY3RDaGFuZ2VzKCk7XHJcbiAgICB9LCAxMDApO1xyXG4gIH1cclxufVxyXG5cclxuZXhwb3J0IGludGVyZmFjZSBCYWJ5bG9uRmVhdHVyZXNTbGlkZXJJdGVtIHtcclxuICB0aXRsZT86IHN0cmluZztcclxuICBkZXNjcmlwdGlvbj86IHN0cmluZztcclxuICBpY29uPzogc3RyaW5nO1xyXG59XHJcbiIsIjxzZWN0aW9uIGNsYXNzPVwiYmFieWxvbl9fZmVhdHVyZXMtc2xpZGVyIG1hcmdpbi1tYWluICBcIj5cclxuXHJcbiAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyIGNzX3N0eWxlXzEgY3Nfc2xpZGVyX2dhcF8zMCBjc19zaG93X3NoYWRvd18yMFwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNzX3NlY3Rpb25faGVhZGluZ193cmFwXzFcIj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19zZWN0aW9uX2hlYWRpbmcgY3Nfc3R5bGVfMSBcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gbm8tYWxpZ25cIj5cclxuICAgICAgICAgICAgICBAaWYocHJldGl0bGUpe1xyXG4gICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwicHJldGl0bGUgd293IGZhZGVJbkxlZnRcIiBkYXRhLXdvdy1kdXJhdGlvbj1cIjAuOHNcIiBkYXRhLXdvdy1kZWxheT1cIjAuMnNcIj57eyBwcmV0aXRsZSB9fSA8L2gzPlxyXG4gICAgICAgICAgICAgIH0gQGlmKHRpdGxlKXtcclxuICAgICAgICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlXCI+e3sgdGl0bGUgfX08L2gyPlxyXG4gICAgICAgICAgICAgIH1cclxuICAgICAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX2Fycm93cyBjc19zdHlsZV80XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19sZWZ0X2Fycm93IHNsaWNrLWFycm93IGNzX2NlbnRlclwiPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LWxlZnQtYmlnXCI+PC9zcGFuPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cIiBjc19yaWdodF9hcnJvdyBzbGljay1hcnJvdyBjc19jZW50ZXJcIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJjc19mdWxsX3dpZHRoX3JpZ2h0IG1iLS0yMFwiPlxyXG4gICAgICAgICAgPGRpdlxyXG4gICAgICAgICAgICBjbGFzcz1cImNzX3NsaWRlcl9jb250YWluZXJcIlxyXG4gICAgICAgICAgICBzbGlkZXJzPVwiY3Nfc2xpZGVyX2NvbnRhaW5lclwiXHJcbiAgICAgICAgICAgIGRhdGEtYXV0b3BsYXk9XCIwXCJcclxuICAgICAgICAgICAgZGF0YS1sb29wPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc3BlZWQ9XCI2MDBcIlxyXG4gICAgICAgICAgICBkYXRhLWNlbnRlcj1cIjBcIlxyXG4gICAgICAgICAgICBkYXRhLXZhcmlhYmxlLXdpZHRoPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc2xpZGVzLXBlci12aWV3PVwicmVzcG9uc2l2ZVwiXHJcbiAgICAgICAgICAgIGRhdGEteHMtc2xpZGVzPVwiMVwiXHJcbiAgICAgICAgICAgIGRhdGEtc20tc2xpZGVzPVwiMlwiXHJcbiAgICAgICAgICAgIGRhdGEtbWQtc2xpZGVzPVwiMlwiXHJcbiAgICAgICAgICAgIGRhdGEtbGctc2xpZGVzPVwiM1wiXHJcbiAgICAgICAgICAgIGRhdGEtYWRkLXNsaWRlcz1cIjNcIlxyXG4gICAgICAgICAgPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVyX3dyYXBwZXJcIj5cclxuICAgICAgICAgICAgICBAaWYgKGl0ZW1zPy5sZW5ndGgpIHsgQGZvciAoaXRlbSBvZiBpdGVtczsgdHJhY2sgJGluZGV4KSB7XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3Nfc2xpZGVcIj5cclxuICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2ljb25ib3ggY3Nfc3R5bGVfMyBjcy0tcmFkaXVzIGJnLS13aGl0ZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19pY29uYm94X2ljb24gY3NfbWJfMjkgY3NfY2VudGVyIGNzLS1yYWRpdXMgYmctLXdoaXRlXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gaWNvbi0tbWVkaXVtIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiaWNvbi0tc3ZnXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJpdGVtLmljb25cIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA+PC9pPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiPnt7IGl0ZW0udGl0bGUgfX08L2gzPlxyXG4gICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dFwiPnt7IGl0ZW0uZGVzY3JpcHRpb24gfX08L3A+XHJcbiAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgfSB9XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgQGlmKGJ1dHRvbil7XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuc19fYm94IGFsaWduLS1jZW50ZXIgXCI+XHJcbiAgICAgICAgICAgIDxhXHJcbiAgICAgICAgICAgICAgW2hyZWZdPVwiYnV0dG9uLnVybFwiXHJcbiAgICAgICAgICAgICAgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgXCJcclxuICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgPGI+e3sgYnV0dG9uLmxhYmVsIH19PC9iPlxyXG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj5cclxuICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgfVxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG5cclxuICA8L3NlY3Rpb24+XHJcbiJdfQ==