ctt-babylon 0.0.152 → 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.
- package/esm2022/lib/components/core/babylon-banner-info/babylon-banner-info.component.mjs +24 -6
- package/esm2022/lib/components/core/babylon-features-slider/babylon-features-slider.component.mjs +25 -6
- package/esm2022/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.mjs +20 -5
- package/esm2022/lib/directives/babylon-sliders/babylon-sliders.directive.mjs +90 -0
- package/esm2022/lib/directives/link-type/link-type.directive.mjs +36 -0
- package/esm2022/lib/interfaces/babylon-banner-info.interface.mjs +2 -0
- package/esm2022/lib/interfaces/babylon-dropdown.interface.mjs +2 -0
- package/esm2022/lib/interfaces/babylon-features-slider.interface.mjs +2 -0
- package/esm2022/lib/interfaces/babylon-rooms-cols.interface.mjs +2 -0
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/ctt-babylon.mjs +179 -12
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-banner-info/babylon-banner-info.component.d.ts +13 -2
- package/lib/components/core/babylon-features-slider/babylon-features-slider.component.d.ts +16 -2
- package/lib/components/core/babylon-rooms-cols/babylon-rooms-cols.component.d.ts +29 -1
- package/lib/directives/babylon-sliders/babylon-sliders.directive.d.ts +11 -0
- package/lib/directives/link-type/link-type.directive.d.ts +11 -0
- package/lib/interfaces/babylon-banner-info.interface.d.ts +9 -0
- package/lib/interfaces/babylon-dropdown.interface.d.ts +7 -0
- package/lib/interfaces/babylon-features-slider.interface.d.ts +8 -0
- package/lib/interfaces/babylon-rooms-cols.interface.d.ts +9 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -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
|
-
|
|
5
|
-
|
|
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\"
|
|
10
|
-
}] }
|
|
11
|
-
|
|
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
|
package/esm2022/lib/components/core/babylon-features-slider/babylon-features-slider.component.mjs
CHANGED
|
@@ -1,11 +1,30 @@
|
|
|
1
|
-
import {
|
|
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
|
-
|
|
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 & 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 & 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 & 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 & 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 & 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 & 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 & 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 & 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 & 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 & 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
|
-
|
|
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==
|
|
@@ -1,11 +1,26 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { BabylonLinkTypeDirective } from '../../../directives/link-type/link-type.directive';
|
|
4
|
+
import { DropdownModule } from 'primeng/dropdown';
|
|
2
5
|
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/common";
|
|
7
|
+
import * as i2 from "primeng/dropdown";
|
|
3
8
|
export class BabylonRoomsColsComponent {
|
|
4
9
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonRoomsColsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: BabylonRoomsColsComponent, isStandalone: true, selector: "lib-babylon-rooms-cols", ngImport: i0, template: "<section class=\"babylon__rooms-cols margin-main \"> \r\n <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">Rooms Cols</h2>\r\n <h3 class=\"title\" >Our Exquisite items</h3> \r\n </div> \r\n </div>\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </section>", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle:\"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}\n"] }); }
|
|
10
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.3.12", type: BabylonRoomsColsComponent, isStandalone: true, selector: "lib-babylon-rooms-cols", inputs: { pretitle: "pretitle", title: "title", items: "items", stFilters: "stFilters", ndFilters: "ndFilters" }, ngImport: i0, template: "<section class=\"babylon__rooms-cols margin-main \">\r\n <div class=\"container margin-main\">\r\n @if (title || pretitle) {\r\n <div class=\"d-flex flex-column align-items-center pb-4\">\r\n @if(pretitle){\r\n <span class=\"pretitle\"> {{ pretitle }} </span>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n }\r\n <div class=\"row justify-content-center filters\">\r\n @if (stFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"stFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"stFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n } @if (ndFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"ndFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"ndFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n }\r\n </div>\r\n <!-- <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">{{ pretitle }}</h2>\r\n <h3 class=\"title\" >{{ title }}</h3>\r\n </div>\r\n </div> -->\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n @if (item.img) {\r\n <img [src]=\"item.img.src\" [alt]=\"item.img.alt\" />\r\n }\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\">\r\n <div class=\"btns__box align--center \">\r\n @if(item.link) {\r\n <a\r\n [href]=\"item.link.url\"\r\n [linkType]=\"item.link.linkType\"\r\n class=\"btn btn_primary btn--light \"\r\n >\r\n <b> {{ item.link.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n } @if(item.button) {\r\n <a\r\n [href]=\"item.button.url\"\r\n [linkType]=\"item.button.linkType\"\r\n class=\"btn btn_call btn--light \"\r\n >\r\n <b> {{ item.button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n }\r\n </div>\r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\">\r\n <div class=\"intro_info \">\r\n @if(item.title){\r\n <h2 class=\"title--small mb--10\">{{ item.title }}</h2>\r\n } @if(item.price){\r\n <h3 class=\"subtitle \"><span class=\"text\">{{ item.priceText }}</span> {{item.price}}\u20AC</h3>\r\n } @if (item.equipment?.length) {\r\n <div class=\"cs_mb_20\">\r\n <ul class=\"cs_card_list cs_mp_0\">\r\n @for (equipment of item.equipment; track $index){\r\n <li>\r\n <div class=\"info--icon \">\r\n @if (equipment.icon) {\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"equipment.icon\"\r\n ></i>\r\n }\r\n </div>\r\n @if (equipment.label) {\r\n <p class=\"text--small\">{{ equipment.label }}</p>\r\n }\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n</section>\r\n", styles: ["@charset \"UTF-8\";:root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle:\"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}.filters{display:flex;flex-direction:column;align-items:center;gap:30px;padding-bottom:40px}@media (min-width: 768px){.filters{flex-direction:row;justify-content:center}}.dropdown__wrapper{display:flex;flex-direction:column;gap:5px;width:250px}.dropdown{position:relative;width:100%}.dropdown-btn{width:100%;font-family:var(--font-text);font-size:15px;color:var(--cl_dropdown-text);font-weight:300;line-height:20px;text-align:left;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);padding:12px 15px;cursor:pointer;-moz-transition:all .1s ease;-o-transition:all .1s ease;-webkit-transition:all .1s ease;-ms-transition:all .1s ease;transition:all .1s ease}.dropdown-btn:after{content:\"\\203a\";font-size:25px;position:absolute;right:10px;top:50%;transform:translateY(-50%) rotate(90deg) scaleX(1.5)}.dropdown-menu{display:none;position:absolute;width:100%;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);list-style:none;padding:0}.dropdown-menu li{padding:12px 15px;cursor:pointer}.dropdown-menu li:hover{background-color:var(--cl_dropdown-hover);border-radius:var(--cl_dropdown-radius);color:#fff}.dropdown.active .dropdown-menu{display:block}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: BabylonLinkTypeDirective, selector: "[linkType]", inputs: ["linkType", "href"] }, { kind: "ngmodule", type: DropdownModule }, { kind: "component", type: i2.Dropdown, selector: "p-dropdown", inputs: ["id", "scrollHeight", "filter", "name", "style", "panelStyle", "styleClass", "panelStyleClass", "readonly", "required", "editable", "appendTo", "tabindex", "placeholder", "loadingIcon", "filterPlaceholder", "filterLocale", "variant", "inputId", "dataKey", "filterBy", "filterFields", "autofocus", "resetFilterOnHide", "checkmark", "dropdownIcon", "loading", "optionLabel", "optionValue", "optionDisabled", "optionGroupLabel", "optionGroupChildren", "autoDisplayFirst", "group", "showClear", "emptyFilterMessage", "emptyMessage", "lazy", "virtualScroll", "virtualScrollItemSize", "virtualScrollOptions", "overlayOptions", "ariaFilterLabel", "ariaLabel", "ariaLabelledBy", "filterMatchMode", "maxlength", "tooltip", "tooltipPosition", "tooltipPositionStyle", "tooltipStyleClass", "focusOnHover", "selectOnFocus", "autoOptionFocus", "autofocusFilter", "autoShowPanelOnPrintableCharacterKeyDown", "disabled", "itemSize", "autoZIndex", "baseZIndex", "showTransitionOptions", "hideTransitionOptions", "filterValue", "options"], outputs: ["onChange", "onFilter", "onFocus", "onBlur", "onClick", "onShow", "onHide", "onClear", "onLazyLoad"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6
11
|
}
|
|
7
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BabylonRoomsColsComponent, decorators: [{
|
|
8
13
|
type: Component,
|
|
9
|
-
args: [{ selector: 'lib-babylon-rooms-cols', standalone: true, imports: [], template: "<section class=\"babylon__rooms-cols margin-main \"> \r\n <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">Rooms Cols</h2>\r\n <h3 class=\"title\" >Our Exquisite items</h3> \r\n </div> \r\n </div>\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n <img src=\"/assets/babylon/fotos/room_4.jpeg\" alt=\"Room\">\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\"> \r\n <div class=\"btns__box align--center \">\r\n <a href=\" \" class=\"btn btn_primary btn--light \">\r\n <b>ver habitaci\u00F3n</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n <a href=\" \" class=\"btn btn_call btn--light \">\r\n <b>reservar</b>\r\n <span class=\"babylon-arrow-right-big\"></span> \r\n </a>\r\n </div> \r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\"> \r\n <div class=\"intro_info \">\r\n <h2 class=\"title--small mb--10\" >Deluxe Room</h2> \r\n <h3 class=\"subtitle \"><span class=\"text\">From</span> 320\u20AC</h3> \r\n <div class=\"cs_mb_20\"> \r\n <ul class=\"cs_card_list cs_mp_0\">\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">110 Sq </p>\r\n </li>\r\n <li>\r\n <div class=\"info--icon \">\r\n <i class=\"icon--svg icon-nuevo_pax_ico_small \"></i> \r\n </div> \r\n <p class=\"text--small\">3-5 Guests </p>\r\n </li>\r\n \r\n </ul> \r\n </div>\r\n </div> \r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div> \r\n </section>", styles: [":root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle:\"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}\n"] }]
|
|
10
|
-
}]
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1yb29tcy1jb2xzL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tcm9vbXMtY29scy9iYWJ5bG9uLXJvb21zLWNvbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFTMUMsTUFBTSxPQUFPLHlCQUF5QjsrR0FBekIseUJBQXlCO21HQUF6Qix5QkFBeUIsa0ZDVHRDLDRtUUF5SVk7OzRGRGhJQyx5QkFBeUI7a0JBUHJDLFNBQVM7K0JBQ0Usd0JBQXdCLGNBQ3RCLElBQUksV0FDUCxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2xpYi1iYWJ5bG9uLXJvb21zLWNvbHMnLFxyXG4gIHN0YW5kYWxvbmU6IHRydWUsXHJcbiAgaW1wb3J0czogW10sXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmw6ICcuL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQuc2NzcydcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25Sb29tc0NvbHNDb21wb25lbnQge1xyXG5cclxufVxyXG4iLCI8c2VjdGlvbiBjbGFzcz1cImJhYnlsb25fX3Jvb21zLWNvbHMgbWFyZ2luLW1haW4gXCI+ICBcclxuICAgIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBhbGlnbi0tY2VudGVyIG5vLWFsaWduXCI+XHJcbiAgICAgICAgICAgIDxoMiBjbGFzcz1cInByZXRpdGxlIG1iLS0xMFwiPlJvb21zIENvbHM8L2gyPlxyXG4gICAgICAgICAgICA8aDMgY2xhc3M9XCJ0aXRsZVwiID5PdXIgRXhxdWlzaXRlIGl0ZW1zPC9oMz4gICBcclxuICAgICAgICA8L2Rpdj4gICBcclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1mbHVpZCBjc19wbHJfMTAwXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInJvdyBjc19nYXBfeV84MFwiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLXhsLTQgY29sLW1kLTZcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkIGNzX3N0eWxlXzcgY3MtLXJhZGl1cyBvdmVyZmxvdy1oaWRkZW5cIj5cclxuICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiI1wiIGNsYXNzPVwiY3NfY2FyZF90aHVtYiBkLWJsb2NrIG92ZXJmbG93LWhpZGRlbiBwb3NpdGlvbi1yZWxhdGl2ZSBjc19wcmltYXJ5X2JnXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxpbWcgc3JjPVwiL2Fzc2V0cy9iYWJ5bG9uL2ZvdG9zL3Jvb21fNC5qcGVnXCIgYWx0PVwiUm9vbVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImNzX2NhcmRfYnRuIHBvc2l0aW9uLWFic29sdXRlIGNzX3ppbmRleF8yXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJ0bnNfX2JveCBhbGlnbi0tY2VudGVyIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX3ByaW1hcnkgYnRuLS1saWdodCBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGI+dmVyIGhhYml0YWNpw7NuPC9iPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiBcIiBjbGFzcz1cImJ0biBidG5fY2FsbCBidG4tLWxpZ2h0IFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj5yZXNlcnZhcjwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkX2luZm8gcG9zaXRpb24tcmVsYXRpdmVcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgyIGNsYXNzPVwidGl0bGUtLXNtYWxsIG1iLS0xMFwiID5EZWx1eGUgUm9vbTwvaDI+ICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDMgY2xhc3M9XCJzdWJ0aXRsZSAgXCI+PHNwYW4gY2xhc3M9XCJ0ZXh0XCI+RnJvbTwvc3Bhbj4gIDMyMOKCrDwvaDM+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX21iXzIwXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDx1bCBjbGFzcz1cImNzX2NhcmRfbGlzdCBjc19tcF8wXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0LS1zbWFsbFwiPjExMCBTcSA8L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbmZvLS1pY29uIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxpIGNsYXNzPVwiaWNvbi0tc3ZnIGljb24tbnVldm9fcGF4X2ljb19zbWFsbCBcIj48L2k+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHAgY2xhc3M9XCJ0ZXh0LS1zbWFsbFwiPjMtNSBHdWVzdHMgPC9wPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3VsPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wteGwtNCBjb2wtbWQtNlwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2NhcmQgY3Nfc3R5bGVfNyBjcy0tcmFkaXVzIG92ZXJmbG93LWhpZGRlblwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIjXCIgY2xhc3M9XCJjc19jYXJkX3RodW1iIGQtYmxvY2sgb3ZlcmZsb3ctaGlkZGVuIHBvc2l0aW9uLXJlbGF0aXZlIGNzX3ByaW1hcnlfYmdcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPGltZyBzcmM9XCIvYXNzZXRzL2JhYnlsb24vZm90b3Mvcm9vbV80LmpwZWdcIiBhbHQ9XCJSb29tXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiY3NfY2FyZF9idG4gcG9zaXRpb24tYWJzb2x1dGUgY3NfemluZGV4XzJcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYnRuc19fYm94IGFsaWduLS1jZW50ZXIgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiBcIiBjbGFzcz1cImJ0biBidG5fcHJpbWFyeSBidG4tLWxpZ2h0IFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj52ZXIgaGFiaXRhY2nDs248L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiIFwiIGNsYXNzPVwiYnRuIGJ0bl9jYWxsIGJ0bi0tbGlnaHQgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPnJlc2VydmFyPC9iPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImJhYnlsb24tYXJyb3ctcmlnaHQtYmlnXCI+PC9zcGFuPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX2NhcmRfaW5mbyBwb3NpdGlvbi1yZWxhdGl2ZVwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImludHJvX2luZm8gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDIgY2xhc3M9XCJ0aXRsZS0tc21hbGwgbWItLTEwXCIgPkRlbHV4ZSBSb29tPC9oMj4gICBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMyBjbGFzcz1cInN1YnRpdGxlICBcIj48c3BhbiBjbGFzcz1cInRleHRcIj5Gcm9tPC9zcGFuPiAgMzIw4oKsPC9oMz4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfbWJfMjBcIj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHVsIGNsYXNzPVwiY3NfY2FyZF9saXN0IGNzX21wXzBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29uLS1zdmcgaWNvbi1udWV2b19wYXhfaWNvX3NtYWxsIFwiPjwvaT4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQtLXNtYWxsXCI+MTEwIFNxIDwvcD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImluZm8tLWljb24gXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGkgY2xhc3M9XCJpY29uLS1zdmcgaWNvbi1udWV2b19wYXhfaWNvX3NtYWxsIFwiPjwvaT4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQtLXNtYWxsXCI+My01IEd1ZXN0cyA8L3A+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdWw+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNvbC14bC00IGNvbC1tZC02XCI+XHJcbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfY2FyZCBjc19zdHlsZV83IGNzLS1yYWRpdXMgb3ZlcmZsb3ctaGlkZGVuXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGEgaHJlZj1cIiNcIiBjbGFzcz1cImNzX2NhcmRfdGh1bWIgZC1ibG9jayBvdmVyZmxvdy1oaWRkZW4gcG9zaXRpb24tcmVsYXRpdmUgY3NfcHJpbWFyeV9iZ1wiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8aW1nIHNyYz1cIi9hc3NldHMvYmFieWxvbi9mb3Rvcy9yb29tXzQuanBlZ1wiIGFsdD1cIlJvb21cIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJjc19jYXJkX2J0biBwb3NpdGlvbi1hYnNvbHV0ZSBjc196aW5kZXhfMlwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG5zX19ib3ggYWxpZ24tLWNlbnRlciBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiIFwiIGNsYXNzPVwiYnRuIGJ0bl9wcmltYXJ5IGJ0bi0tbGlnaHQgXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxiPnZlciBoYWJpdGFjacOzbjwvYj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhIGhyZWY9XCIgXCIgY2xhc3M9XCJidG4gYnRuX2NhbGwgYnRuLS1saWdodCBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGI+cmVzZXJ2YXI8L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfY2FyZF9pbmZvIHBvc2l0aW9uLXJlbGF0aXZlXCI+IFxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlLS1zbWFsbCBtYi0tMTBcIiA+RGVsdXhlIFJvb208L2gyPiAgIFxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwic3VidGl0bGUgIFwiPjxzcGFuIGNsYXNzPVwidGV4dFwiPkZyb208L3NwYW4+ICAzMjDigqw8L2gzPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19tYl8yMFwiPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWwgY2xhc3M9XCJjc19jYXJkX2xpc3QgY3NfbXBfMFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dC0tc21hbGxcIj4xMTAgU3EgPC9wPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGk+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aSBjbGFzcz1cImljb24tLXN2ZyBpY29uLW51ZXZvX3BheF9pY29fc21hbGwgXCI+PC9pPiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PiBcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwIGNsYXNzPVwidGV4dC0tc21hbGxcIj4zLTUgR3Vlc3RzIDwvcD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC91bD4gXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+IFxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+IFxyXG4gIDwvc2VjdGlvbj4iXX0=
|
|
14
|
+
args: [{ selector: 'lib-babylon-rooms-cols', standalone: true, imports: [CommonModule, BabylonLinkTypeDirective, DropdownModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<section class=\"babylon__rooms-cols margin-main \">\r\n <div class=\"container margin-main\">\r\n @if (title || pretitle) {\r\n <div class=\"d-flex flex-column align-items-center pb-4\">\r\n @if(pretitle){\r\n <span class=\"pretitle\"> {{ pretitle }} </span>\r\n } @if(title){\r\n <h2 class=\"title\">{{ title }}</h2>\r\n }\r\n </div>\r\n }\r\n <div class=\"row justify-content-center filters\">\r\n @if (stFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"stFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"stFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n } @if (ndFilters) {\r\n <div class=\"dropdown__wrapper\">\r\n <p-dropdown\r\n class=\"dropdown\"\r\n [options]=\"ndFilters.options\"\r\n optionLabel=\"name\"\r\n [placeholder]=\"ndFilters.placeholder\"\r\n >\r\n </p-dropdown>\r\n </div>\r\n }\r\n </div>\r\n <!-- <div class=\"container\">\r\n <div class=\"intro_info align--center no-align\">\r\n <h2 class=\"pretitle mb--10\">{{ pretitle }}</h2>\r\n <h3 class=\"title\" >{{ title }}</h3>\r\n </div>\r\n </div> -->\r\n <div class=\"container-fluid cs_plr_100\">\r\n <div class=\"row cs_gap_y_80\">\r\n @if (items?.length) { @for (item of items; track $index) {\r\n <div class=\"col-xl-4 col-md-6\">\r\n <div class=\"cs_card cs_style_7 cs--radius overflow-hidden\">\r\n <a href=\"#\" class=\"cs_card_thumb d-block overflow-hidden position-relative cs_primary_bg\">\r\n @if (item.img) {\r\n <img [src]=\"item.img.src\" [alt]=\"item.img.alt\" />\r\n }\r\n <span class=\"cs_card_btn position-absolute cs_zindex_2\">\r\n <div class=\"btns__box align--center \">\r\n @if(item.link) {\r\n <a\r\n [href]=\"item.link.url\"\r\n [linkType]=\"item.link.linkType\"\r\n class=\"btn btn_primary btn--light \"\r\n >\r\n <b> {{ item.link.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n } @if(item.button) {\r\n <a\r\n [href]=\"item.button.url\"\r\n [linkType]=\"item.button.linkType\"\r\n class=\"btn btn_call btn--light \"\r\n >\r\n <b> {{ item.button.label }}</b>\r\n <span class=\"babylon-arrow-right-big\"></span>\r\n </a>\r\n }\r\n </div>\r\n </span>\r\n </a>\r\n <div class=\"cs_card_info position-relative\">\r\n <div class=\"intro_info \">\r\n @if(item.title){\r\n <h2 class=\"title--small mb--10\">{{ item.title }}</h2>\r\n } @if(item.price){\r\n <h3 class=\"subtitle \"><span class=\"text\">{{ item.priceText }}</span> {{item.price}}\u20AC</h3>\r\n } @if (item.equipment?.length) {\r\n <div class=\"cs_mb_20\">\r\n <ul class=\"cs_card_list cs_mp_0\">\r\n @for (equipment of item.equipment; track $index){\r\n <li>\r\n <div class=\"info--icon \">\r\n @if (equipment.icon) {\r\n <i\r\n class=\"icon--svg\"\r\n [ngClass]=\"equipment.icon\"\r\n ></i>\r\n }\r\n </div>\r\n @if (equipment.label) {\r\n <p class=\"text--small\">{{ equipment.label }}</p>\r\n }\r\n </li>\r\n }\r\n </ul>\r\n </div>\r\n }\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n } }\r\n </div>\r\n </div>\r\n </div>\r\n</section>\r\n", styles: ["@charset \"UTF-8\";:root{--font-title: \"the-seasons\", Helvetica, sans-serif;--font-pretitle:\"Poppins\", Helvetica, sans-serif;--font-text: \"Poppins\", Helvetica, sans-serif;--font-claim: \"turbinado-pro\", Helvetica, sans-serif;--cl_corp: #24262d;--cl_accent: #aa8453;--cl_icon: #978667;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #24262d;--cl_breadcrumb-hover: #978667;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #fdfbf8;--cl_background_white: #fff;--cl_background_dark: #19314b;--cl_background_gray: #eee;--cl_title: #978667;--cl_subtitle: #19314b;--cl_pretitle: #19314b;--cl_text: #3c3b3b;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--w_title: 600;--w_text: 300;--w_subtitle: 300;--w_pretitle: 300;--cl_header-bg: #494949;--cl_header-text-light: #fff;--cl_menu-bg: #19314b;--cl_menu-text: #fff;--w_btn: 400;--cl_btn-box: #19314b;--cl_btn-box-text: #19314b;--cl_btn-box-hover: #978667;--cl_btn-box-text-hover: #fff;--cl_btn-call: #19314bf2;--cl_btn-call-text: white;--cl_btn-call-hover: #978667;--cl_btn-call-text-hover: #fff;--cl_btn-link: #19314b;--cl_btn-link-hover: #978667;--cl_btn-arrow: #19314b;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #978667;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #24262d;--cl_btn-dots-active: #978667;--cl_btn-dots-hover: #978667;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #978667;--cl_btn-light-text-hover: #978667;--cl_footer-bg: #19314b;--cl_footer-bg-bottom:#0a1d31;--cl_footer-scroll:#978667;--cl_footer-text: #fff;--cl_footer-text-hover: #978667;--btn_radius: 5px;--img_radius: 5px;--img_border: #fff;--img_border-whidth:1px}.cs_dark{--cl_corp: #181818;--cl_accent: #aa8453;--cl_icon: #aa8453;--cl_icon-light: #fff;--cl_border-light: #ededed;--cl_border-dark: #d9e1e6;--cl_shadow: rgba(0, 0, 0, .1);--cl_breadcrumb: #fff;--cl_breadcrumb-hover: #aa8453;--cl_preload-bg:#ededed;--cl_preload:#24262d;--cl_background_body: #181818;--cl_background_white: transparent;--cl_background_dark: #aa8453;--cl_background_gray: #333;--cl_title: #fff;--cl_subtitle: #aa8453;--cl_pretitle: #aa8453;--cl_text: #fff;--cl_title-light: #fff;--cl_subtitle-light: #fff;--cl_pretitle-light: #fff;--cl_text-light: #fff;--cl_header-bg: #aa8453;--cl_header-text-light: #fff;--cl_menu-bg: #79582c;--cl_menu-text: #fff;--cl_btn-box: #aa8453;--cl_btn-box-text: #aa8453;--cl_btn-box-hover: #79582c;--cl_btn-box-text-hover: #fff;--cl_btn-call: #aa8453;--cl_btn-call-text: white;--cl_btn-call-hover: #79582c;--cl_btn-call-text-hover: #fff;--cl_btn-link: #aa8453;--cl_btn-link-hover: #79582c;--cl_btn-arrow: #ffffff3a;--cl_btn-arrow-icon: #fff;--cl_btn-arrow-hover: #79582c;--cl_btn-arrow-icon-hover: #fff;--cl_btn-dots: #eee;--cl_btn-dots-active: #79582c;--cl_btn-dots-hover: #79582c;--cl_btn-light: #fff;--cl_btn-light-text: #fff;--cl_btn-light-hover: #79582c;--cl_btn-light-text-hover: #79582c;--cl_footer-bg: #aa8453;--cl_footer-bg-bottom:#79582c;--cl_footer-scroll:#aa8453;--cl_footer-text: #fff;--cl_footer-text-hover: #aa8453;--btn_radius: 1px;--img_radius: 0px;--img_border: #fff;--img_border-whidth:2px}.mt--0{margin-top:0!important}.mb--0{margin-bottom:0!important}.mr--0{margin-right:0!important}.ml--0{margin-left:0!important}.pt--0{padding-top:0}.pb--0{padding-bottom:0}.pl--0{padding-left:0!important}.mblock--0{margin-block:0px}.pblock--0{padding-block:0px}.mt--10{margin-top:10px!important}.mb--10{margin-bottom:10px!important}.mr--10{margin-right:10px!important}.ml--10{margin-left:10px!important}.pt--10{padding-top:10px}.pb--10{padding-bottom:10px}.pl--10{padding-left:10px!important}.mblock--10{margin-block:10px}.pblock--10{padding-block:10px}.mt--20{margin-top:20px!important}.mb--20{margin-bottom:20px!important}.mr--20{margin-right:20px!important}.ml--20{margin-left:20px!important}.pt--20{padding-top:20px}.pb--20{padding-bottom:20px}.pl--20{padding-left:20px!important}.mblock--20{margin-block:20px}.pblock--20{padding-block:20px}.mt--25{margin-top:25px!important}.mb--25{margin-bottom:25px!important}.mr--25{margin-right:25px!important}.ml--25{margin-left:25px!important}.pt--25{padding-top:25px}.pb--25{padding-bottom:25px}.pl--25{padding-left:25px!important}.mblock--25{margin-block:25px}.pblock--25{padding-block:25px}.mt--30{margin-top:30px!important}.mb--30{margin-bottom:30px!important}.mr--30{margin-right:30px!important}.ml--30{margin-left:30px!important}.pt--30{padding-top:30px}.pb--30{padding-bottom:30px}.pl--30{padding-left:30px!important}.mblock--30{margin-block:30px}.pblock--30{padding-block:30px}.mt--40{margin-top:40px!important}.mb--40{margin-bottom:40px!important}.mr--40{margin-right:40px!important}.ml--40{margin-left:40px!important}.pt--40{padding-top:40px}.pb--40{padding-bottom:40px}.pl--40{padding-left:40px!important}.mblock--40{margin-block:40px}.pblock--40{padding-block:40px}.mt--50{margin-top:50px!important}.mb--50{margin-bottom:50px!important}.mr--50{margin-right:50px!important}.ml--50{margin-left:50px!important}.pt--50{padding-top:50px}.pb--50{padding-bottom:50px}.pl--50{padding-left:50px!important}.mblock--50{margin-block:50px}.pblock--50{padding-block:50px}.mt--60{margin-top:60px!important}.mb--60{margin-bottom:60px!important}.mr--60{margin-right:60px!important}.ml--60{margin-left:60px!important}.pt--60{padding-top:60px}.pb--60{padding-bottom:60px}.pl--60{padding-left:60px!important}.mblock--60{margin-block:60px}.pblock--60{padding-block:60px}.mt--70{margin-top:70px!important}.mb--70{margin-bottom:70px!important}.mr--70{margin-right:70px!important}.ml--70{margin-left:70px!important}.pt--70{padding-top:70px}.pb--70{padding-bottom:70px}.pl--70{padding-left:70px!important}.mblock--70{margin-block:70px}.pblock--70{padding-block:70px}.mt--80{margin-top:80px!important}.mb--80{margin-bottom:80px!important}.mr--80{margin-right:80px!important}.ml--80{margin-left:80px!important}.pt--80{padding-top:80px}.pb--80{padding-bottom:80px}.pl--80{padding-left:80px!important}.mblock--80{margin-block:80px}.pblock--80{padding-block:80px}.mt--90{margin-top:90px!important}.mb--90{margin-bottom:90px!important}.mr--90{margin-right:90px!important}.ml--90{margin-left:90px!important}.pt--90{padding-top:90px}.pb--90{padding-bottom:90px}.pl--90{padding-left:90px!important}.mblock--90{margin-block:90px}.pblock--90{padding-block:90px}.mt--100{margin-top:100px!important}.mb--100{margin-bottom:100px!important}.mr--100{margin-right:100px!important}.ml--100{margin-left:100px!important}.pt--100{padding-top:100px}.pb--100{padding-bottom:100px}.pl--100{padding-left:100px!important}.mblock--100{margin-block:100px}.pblock--100{padding-block:100px}.cs_card.cs_style_1 .cs_card_list,.cs_card.cs_style_2 .cs_card_list,.cs_card.cs_style_3 .cs_card_list,.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_5 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap}.cs_card.cs_style_1 .cs_card_list li,.cs_card.cs_style_2 .cs_card_list li,.cs_card.cs_style_3 .cs_card_list li,.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_5 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative}.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:15px;margin-right:14px}@media (max-width: 374px){.cs_card.cs_style_1 .cs_card_list li:not(:last-child),.cs_card.cs_style_2 .cs_card_list li:not(:last-child),.cs_card.cs_style_3 .cs_card_list li:not(:last-child),.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_5 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:9px;margin-right:8px}}.cs_card.cs_style_1 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_2 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_3 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_5 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:0;top:50%;margin-top:-10px;height:20px;width:1px;background-color:var(--secondary)}.cs_card.cs_style_1 .cs_card_price,.cs_card.cs_style_2 .cs_card_price,.cs_card.cs_style_3 .cs_card_price,.cs_card.cs_style_4 .cs_card_price,.cs_card.cs_style_5 .cs_card_price,.cs_card.cs_style_7 .cs_card_price{display:flex;align-items:center;gap:20px}.cs_card.cs_style_1.text-center .cs_card_price,.cs_card.cs_style_1.text-center .cs_card_list,.cs_card.cs_style_2.text-center .cs_card_price,.cs_card.cs_style_2.text-center .cs_card_list,.cs_card.cs_style_3.text-center .cs_card_price,.cs_card.cs_style_3.text-center .cs_card_list,.cs_card.cs_style_4.text-center .cs_card_price,.cs_card.cs_style_4.text-center .cs_card_list,.cs_card.cs_style_5.text-center .cs_card_price,.cs_card.cs_style_5.text-center .cs_card_list,.cs_card.cs_style_7.text-center .cs_card_price,.cs_card.cs_style_7.text-center .cs_card_list{justify-content:center}.cs_card.cs_style_7{border:1px solid var(--ternary);transition:all .4s ease}.cs_card.cs_style_7 .cs_card_btn{top:50%;left:50%;transform:translate(-50%,-50%);transition:all .4s ease;margin-top:30px;opacity:0;display:block}.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}@media (max-width: 991px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}@media (max-width: 374px){.cs_card.cs_style_7 .cs_card_info{padding:5px 10px 15px}}.cs_card.cs_style_7 .cs_card_thumb img{transition:all .4s ease}.cs_card.cs_style_7:hover{transform:translateY(-5px)}.cs_card.cs_style_7:hover .cs_card_btn{margin-top:0;opacity:1}.cs_card.cs_style_7:hover .cs_card_thumb img{transform:scale(1.03)}.cs_card.cs_style_7.cs_type_1 .cs_card_info p{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@media (min-width: 768px){.cs_card.cs_style_7.cs_type_1{display:flex;align-items:center}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb{flex:none;width:45%;height:415px}.cs_card.cs_style_7.cs_type_1 .cs_card_thumb img{height:100%;width:100%;object-fit:cover}}.cs_card.cs_style_4 .cs_card_list,.cs_card.cs_style_7 .cs_card_list{display:inline-flex;flex-wrap:wrap;width:100%;gap:20px}.cs_card.cs_style_4 .cs_card_list li,.cs_card.cs_style_7 .cs_card_list li{position:relative;display:flex;gap:10px;align-items:center}.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:5px;margin-right:4px}@media (max-width: 374px){.cs_card.cs_style_4 .cs_card_list li:not(:last-child),.cs_card.cs_style_7 .cs_card_list li:not(:last-child){padding-right:4px;margin-right:4px}}.cs_card.cs_style_4 .cs_card_list li:not(:last-child):after,.cs_card.cs_style_7 .cs_card_list li:not(:last-child):after{content:\"\";position:absolute;right:-10px;top:0;margin-top:-10px;height:calc(100% + 20px);width:1px;background-color:var(--cl_text-light);opacity:.3}.filters{display:flex;flex-direction:column;align-items:center;gap:30px;padding-bottom:40px}@media (min-width: 768px){.filters{flex-direction:row;justify-content:center}}.dropdown__wrapper{display:flex;flex-direction:column;gap:5px;width:250px}.dropdown{position:relative;width:100%}.dropdown-btn{width:100%;font-family:var(--font-text);font-size:15px;color:var(--cl_dropdown-text);font-weight:300;line-height:20px;text-align:left;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);padding:12px 15px;cursor:pointer;-moz-transition:all .1s ease;-o-transition:all .1s ease;-webkit-transition:all .1s ease;-ms-transition:all .1s ease;transition:all .1s ease}.dropdown-btn:after{content:\"\\203a\";font-size:25px;position:absolute;right:10px;top:50%;transform:translateY(-50%) rotate(90deg) scaleX(1.5)}.dropdown-menu{display:none;position:absolute;width:100%;background-color:#fff;border:1px solid var(--cl_background_dark);border-radius:var(--cl_dropdown-radius);list-style:none;padding:0}.dropdown-menu li{padding:12px 15px;cursor:pointer}.dropdown-menu li:hover{background-color:var(--cl_dropdown-hover);border-radius:var(--cl_dropdown-radius);color:#fff}.dropdown.active .dropdown-menu{display:block}\n"] }]
|
|
15
|
+
}], propDecorators: { pretitle: [{
|
|
16
|
+
type: Input
|
|
17
|
+
}], title: [{
|
|
18
|
+
type: Input
|
|
19
|
+
}], items: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}], stFilters: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}], ndFilters: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}] } });
|
|
26
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2JhYnlsb24vc3JjL2xpYi9jb21wb25lbnRzL2NvcmUvYmFieWxvbi1yb29tcy1jb2xzL2JhYnlsb24tcm9vbXMtY29scy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9iYWJ5bG9uL3NyYy9saWIvY29tcG9uZW50cy9jb3JlL2JhYnlsb24tcm9vbXMtY29scy9iYWJ5bG9uLXJvb21zLWNvbHMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFHMUUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQVdsRCxNQUFNLE9BQU8seUJBQXlCOytHQUF6Qix5QkFBeUI7bUdBQXpCLHlCQUF5QixvTUNoQnRDLDRwS0E2R0EsNnNZRGxHWSxZQUFZLDZIQUFFLHdCQUF3QixvRkFBRSxjQUFjOzs0RkFLckQseUJBQXlCO2tCQVJyQyxTQUFTOytCQUNFLHdCQUF3QixjQUN0QixJQUFJLFdBQ1AsQ0FBQyxZQUFZLEVBQUUsd0JBQXdCLEVBQUUsY0FBYyxDQUFDLG1CQUdoRCx1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csU0FBUztzQkFBakIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQmFieWxvbkJ1dHRvbkkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24tYnV0dG9uLmludGVyZmFjZSc7XHJcbmltcG9ydCB7IEJhYnlsb25JbWFnZUkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24taW1hZ2UuaW50ZXJmYWNlJztcclxuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcclxuaW1wb3J0IHsgQmFieWxvbkxpbmtUeXBlRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vLi4vZGlyZWN0aXZlcy9saW5rLXR5cGUvbGluay10eXBlLmRpcmVjdGl2ZSc7XHJcbmltcG9ydCB7IERyb3Bkb3duTW9kdWxlIH0gZnJvbSAncHJpbWVuZy9kcm9wZG93bic7XHJcbmltcG9ydCB7IEJhYnlsb25Ecm9wZG93bkkgfSBmcm9tICcuLi8uLi8uLi9pbnRlcmZhY2VzL2JhYnlsb24tZHJvcGRvd24uaW50ZXJmYWNlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLWJhYnlsb24tcm9vbXMtY29scycsXHJcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcclxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBCYWJ5bG9uTGlua1R5cGVEaXJlY3RpdmUsIERyb3Bkb3duTW9kdWxlXSxcclxuICB0ZW1wbGF0ZVVybDogJy4vYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vYmFieWxvbi1yb29tcy1jb2xzLmNvbXBvbmVudC5zY3NzJyxcclxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJhYnlsb25Sb29tc0NvbHNDb21wb25lbnQge1xyXG4gIEBJbnB1dCgpIHByZXRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIHRpdGxlPzogc3RyaW5nO1xyXG4gIEBJbnB1dCgpIGl0ZW1zPzogQmFieWxvblJvb21zTGlzdEl0ZW1bXTtcclxuICBASW5wdXQoKSBzdEZpbHRlcnM/OiBCYWJ5bG9uRHJvcGRvd25JO1xyXG4gIEBJbnB1dCgpIG5kRmlsdGVycz86IEJhYnlsb25Ecm9wZG93bkk7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQmFieWxvblJvb21zTGlzdEl0ZW0ge1xyXG4gICAgYnV0dG9uPzogQmFieWxvbkJ1dHRvbkk7XHJcbiAgICBsaW5rPzogQmFieWxvbkJ1dHRvbkk7XHJcbiAgICBpbWc/OiBCYWJ5bG9uSW1hZ2VJO1xyXG4gICAgdGl0bGU/OiBzdHJpbmc7XHJcbiAgICBwcmV0aXRsZT86IHN0cmluZztcclxuICAgIGVxdWlwbWVudD86IEJhYnlsb25Sb29tc0xpc3RFcXVpcG1lbnRbXTtcclxuICAgIGJlZHJvb21GaWx0ZXJJZD86IG51bWJlcjtcclxuICAgIGNoYXJhY3RlcmlzdGljc0ZpbHRlcklkPzogbnVtYmVyO1xyXG4gICAgcHJpY2U/OiBudW1iZXI7XHJcbiAgICBwcmljZVRleHQ/OiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgQmFieWxvblJvb21zTGlzdEVxdWlwbWVudCB7XHJcbiAgICBpY29uPzogc3RyaW5nO1xyXG4gICAgbGFiZWw/OiBzdHJpbmc7XHJcbn1cclxuXHJcbmV4cG9ydCBpbnRlcmZhY2UgRHJvcGRvd25PcHRpb24ge1xyXG4gIGNvZGU/OiBudW1iZXI7XHJcbiAgbmFtZT86IHN0cmluZztcclxufVxyXG4iLCI8c2VjdGlvbiBjbGFzcz1cImJhYnlsb25fX3Jvb21zLWNvbHMgbWFyZ2luLW1haW4gXCI+XHJcbiAgPGRpdiBjbGFzcz1cImNvbnRhaW5lciBtYXJnaW4tbWFpblwiPlxyXG4gICAgQGlmICh0aXRsZSB8fCBwcmV0aXRsZSkge1xyXG4gICAgICA8ZGl2IGNsYXNzPVwiZC1mbGV4IGZsZXgtY29sdW1uIGFsaWduLWl0ZW1zLWNlbnRlciBwYi00XCI+XHJcbiAgICAgICAgQGlmKHByZXRpdGxlKXtcclxuICAgICAgICAgIDxzcGFuIGNsYXNzPVwicHJldGl0bGVcIj4ge3sgcHJldGl0bGUgfX0gPC9zcGFuPlxyXG4gICAgICAgIH0gQGlmKHRpdGxlKXtcclxuICAgICAgICAgIDxoMiBjbGFzcz1cInRpdGxlXCI+e3sgdGl0bGUgfX08L2gyPlxyXG4gICAgICAgIH1cclxuICAgICAgPC9kaXY+XHJcbiAgICB9XHJcbiAgICA8ZGl2IGNsYXNzPVwicm93IGp1c3RpZnktY29udGVudC1jZW50ZXIgZmlsdGVyc1wiPlxyXG4gICAgICBAaWYgKHN0RmlsdGVycykge1xyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJkcm9wZG93bl9fd3JhcHBlclwiPlxyXG4gICAgICAgICAgICA8cC1kcm9wZG93blxyXG4gICAgICAgICAgICAgIGNsYXNzPVwiZHJvcGRvd25cIlxyXG4gICAgICAgICAgICAgIFtvcHRpb25zXT1cInN0RmlsdGVycy5vcHRpb25zXCJcclxuICAgICAgICAgICAgICBvcHRpb25MYWJlbD1cIm5hbWVcIlxyXG4gICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJzdEZpbHRlcnMucGxhY2Vob2xkZXJcIlxyXG4gICAgICAgICAgICA+XHJcbiAgICAgICAgICAgIDwvcC1kcm9wZG93bj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgfSBAaWYgKG5kRmlsdGVycykge1xyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJkcm9wZG93bl9fd3JhcHBlclwiPlxyXG4gICAgICAgICAgICA8cC1kcm9wZG93blxyXG4gICAgICAgICAgICAgIGNsYXNzPVwiZHJvcGRvd25cIlxyXG4gICAgICAgICAgICAgIFtvcHRpb25zXT1cIm5kRmlsdGVycy5vcHRpb25zXCJcclxuICAgICAgICAgICAgICBvcHRpb25MYWJlbD1cIm5hbWVcIlxyXG4gICAgICAgICAgICAgIFtwbGFjZWhvbGRlcl09XCJuZEZpbHRlcnMucGxhY2Vob2xkZXJcIlxyXG4gICAgICAgICAgICA+XHJcbiAgICAgICAgICAgIDwvcC1kcm9wZG93bj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgfVxyXG4gICAgPC9kaXY+XHJcbiAgICA8IS0tIDxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiaW50cm9faW5mbyBhbGlnbi0tY2VudGVyIG5vLWFsaWduXCI+XHJcbiAgICAgICAgICAgIDxoMiBjbGFzcz1cInByZXRpdGxlIG1iLS0xMFwiPnt7IHByZXRpdGxlIH19PC9oMj5cclxuICAgICAgICAgICAgPGgzIGNsYXNzPVwidGl0bGVcIiA+e3sgdGl0bGUgfX08L2gzPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+IC0tPlxyXG4gICAgPGRpdiBjbGFzcz1cImNvbnRhaW5lci1mbHVpZCBjc19wbHJfMTAwXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInJvdyBjc19nYXBfeV84MFwiPlxyXG4gICAgICAgICAgQGlmIChpdGVtcz8ubGVuZ3RoKSB7IEBmb3IgKGl0ZW0gb2YgaXRlbXM7IHRyYWNrICRpbmRleCkge1xyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY29sLXhsLTQgY29sLW1kLTZcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjc19jYXJkIGNzX3N0eWxlXzcgY3MtLXJhZGl1cyBvdmVyZmxvdy1oaWRkZW5cIj5cclxuICAgICAgICAgICAgICAgICAgICA8YSBocmVmPVwiI1wiIGNsYXNzPVwiY3NfY2FyZF90aHVtYiBkLWJsb2NrIG92ZXJmbG93LWhpZGRlbiBwb3NpdGlvbi1yZWxhdGl2ZSBjc19wcmltYXJ5X2JnXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIEBpZiAoaXRlbS5pbWcpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICA8aW1nIFtzcmNdPVwiaXRlbS5pbWcuc3JjXCIgW2FsdF09XCJpdGVtLmltZy5hbHRcIiAvPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiY3NfY2FyZF9idG4gcG9zaXRpb24tYWJzb2x1dGUgY3NfemluZGV4XzJcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJidG5zX19ib3ggYWxpZ24tLWNlbnRlciBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYoaXRlbS5saW5rKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBbaHJlZl09XCJpdGVtLmxpbmsudXJsXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgW2xpbmtUeXBlXT1cIml0ZW0ubGluay5saW5rVHlwZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiYnRuIGJ0bl9wcmltYXJ5IGJ0bi0tbGlnaHQgXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj4ge3sgaXRlbS5saW5rLmxhYmVsIH19PC9iPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYmFieWxvbi1hcnJvdy1yaWdodC1iaWdcIj48L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2E+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBAaWYoaXRlbS5idXR0b24pIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtocmVmXT1cIml0ZW0uYnV0dG9uLnVybFwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtsaW5rVHlwZV09XCJpdGVtLmJ1dHRvbi5saW5rVHlwZVwiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwiYnRuIGJ0bl9jYWxsIGJ0bi0tbGlnaHQgXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8Yj4ge3sgaXRlbS5idXR0b24ubGFiZWwgfX08L2I+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJiYWJ5bG9uLWFycm93LXJpZ2h0LWJpZ1wiPjwvc3Bhbj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiY3NfY2FyZF9pbmZvIHBvc2l0aW9uLXJlbGF0aXZlXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJpbnRyb19pbmZvIFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmKGl0ZW0udGl0bGUpe1xyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aDIgY2xhc3M9XCJ0aXRsZS0tc21hbGwgbWItLTEwXCI+e3sgaXRlbS50aXRsZSB9fTwvaDI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IEBpZihpdGVtLnByaWNlKXtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGgzIGNsYXNzPVwic3VidGl0bGUgIFwiPjxzcGFuIGNsYXNzPVwidGV4dFwiPnt7IGl0ZW0ucHJpY2VUZXh0IH19PC9zcGFuPiAge3tpdGVtLnByaWNlfX3igqw8L2gzPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBAaWYgKGl0ZW0uZXF1aXBtZW50Py5sZW5ndGgpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNzX21iXzIwXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8dWwgY2xhc3M9XCJjc19jYXJkX2xpc3QgY3NfbXBfMFwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAZm9yIChlcXVpcG1lbnQgb2YgaXRlbS5lcXVpcG1lbnQ7IHRyYWNrICRpbmRleCl7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxpPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwiaW5mby0taWNvbiBcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBAaWYgKGVxdWlwbWVudC5pY29uKSB7XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cImljb24tLXN2Z1wiXHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cImVxdWlwbWVudC5pY29uXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgID48L2k+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgQGlmIChlcXVpcG1lbnQubGFiZWwpIHtcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cCBjbGFzcz1cInRleHQtLXNtYWxsXCI+e3sgZXF1aXBtZW50LmxhYmVsIH19PC9wPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9saT5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC91bD5cclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB9XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgfSB9XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9zZWN0aW9uPlxyXG4iXX0=
|