ctt-babylon 0.8.17 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/esm2022/lib/components/core/babylon-list-c3-img-txt/babylon-list-c3-img-txt.component.mjs +12 -5
  2. package/esm2022/lib/components/core/babylon-slider-img-static/babylon-slider-img-static.component.mjs +12 -0
  3. package/esm2022/lib/components/core/babylon-slider-img-static/index.mjs +2 -0
  4. package/esm2022/lib/components/core/babylon-slider-img-static-v2/babylon-slider-img-static-v2.component.mjs +3 -3
  5. package/esm2022/lib/components/core/babylon-top-simple-banner/babylon-top-simple-banner.component.mjs +20 -0
  6. package/esm2022/lib/components/core/babylon-top-simple-banner/index.mjs +2 -0
  7. package/esm2022/lib/components/core/index.mjs +8 -7
  8. package/esm2022/lib/directives/scrolls/scroll-to.directive.mjs +183 -0
  9. package/esm2022/lib/directives/scrolls/show-only-top.directive.mjs +103 -0
  10. package/esm2022/lib/directives/sliders/slick-init.directive.mjs +18 -11
  11. package/esm2022/lib/interfaces/babylon-item.interface.mjs +1 -1
  12. package/esm2022/lib/interfaces/babylon-text-info.interface.mjs +1 -1
  13. package/esm2022/lib/services/mapper/mapper.service.mjs +18 -11
  14. package/esm2022/lib/services/scroll/scroll-spy.service.mjs +50 -0
  15. package/fesm2022/ctt-babylon.mjs +955 -586
  16. package/fesm2022/ctt-babylon.mjs.map +1 -1
  17. package/lib/components/core/babylon-list-c3-img-txt/babylon-list-c3-img-txt.component.d.ts +5 -1
  18. package/lib/components/core/babylon-slider-img-static/babylon-slider-img-static.component.d.ts +5 -0
  19. package/lib/components/core/babylon-slider-img-static/index.d.ts +1 -0
  20. package/lib/components/core/babylon-top-simple-banner/babylon-top-simple-banner.component.d.ts +6 -0
  21. package/lib/components/core/babylon-top-simple-banner/index.d.ts +1 -0
  22. package/lib/components/core/index.d.ts +7 -6
  23. package/lib/directives/scrolls/scroll-to.directive.d.ts +31 -0
  24. package/lib/directives/scrolls/show-only-top.directive.d.ts +22 -0
  25. package/lib/interfaces/babylon-item.interface.d.ts +6 -0
  26. package/lib/interfaces/babylon-text-info.interface.d.ts +2 -0
  27. package/lib/services/mapper/mapper.service.d.ts +2 -1
  28. package/lib/services/scroll/scroll-spy.service.d.ts +17 -0
  29. package/lib/styles/styles/babylon/_spacing.css +1 -0
  30. package/lib/styles/styles/babylon/_spacing.scss +72 -0
  31. package/lib/styles/styles/babylon/common.css +1 -0
  32. package/lib/styles/styles/babylon/common.scss +1823 -0
  33. package/lib/styles/styles/babylon/globals.css +1 -0
  34. package/lib/styles/styles/babylon/globals.scss +848 -0
  35. package/lib/styles/styles/babylon/mixins.css +1 -0
  36. package/lib/styles/styles/babylon/mixins.scss +1031 -0
  37. package/lib/styles/styles/babylon/reset.css +1 -0
  38. package/lib/styles/styles/babylon/reset.scss +136 -0
  39. package/lib/styles/styles/babylon/slide.css +1 -0
  40. package/lib/styles/styles/babylon/slider.css +1 -0
  41. package/lib/styles/styles/babylon/slider.scss +876 -0
  42. package/lib/styles/styles/babylon/structure.css +0 -0
  43. package/lib/styles/styles/babylon/structure.scss +1 -0
  44. package/lib/styles/styles/babylon/variables-v2.css +0 -0
  45. package/lib/styles/styles/babylon/variables.css +1 -0
  46. package/lib/styles/styles/babylon/variables.scss +330 -0
  47. package/package.json +1 -1
  48. /package/lib/styles/styles/babylon/{scss-daba/airDatePicker.min.css → airDatePicker.min.css} +0 -0
  49. /package/lib/styles/styles/babylon/{scss-daba/aos.min.css → aos.min.css} +0 -0
  50. /package/lib/styles/styles/babylon/{scss-daba/buttons.css → buttons.css} +0 -0
  51. /package/lib/styles/styles/babylon/{scss-daba/buttons.scss → buttons.scss} +0 -0
  52. /package/lib/styles/styles/babylon/{scss-daba/fancybox.css → fancybox.css} +0 -0
  53. /package/lib/styles/styles/babylon/{scss-daba/fancybox.min.css → fancybox.min.css} +0 -0
  54. /package/lib/styles/styles/babylon/{scss-daba/funciones.css → funciones.css} +0 -0
  55. /package/lib/styles/styles/babylon/{scss-daba/funciones.scss → funciones.scss} +0 -0
  56. /package/lib/styles/styles/babylon/{scss-daba/inputs.css → inputs.css} +0 -0
  57. /package/lib/styles/styles/babylon/{scss-daba/inputs.scss → inputs.scss} +0 -0
  58. /package/lib/styles/styles/babylon/{scss-daba/jquery.fancybox.min.css → jquery.fancybox.min.css} +0 -0
  59. /package/lib/styles/styles/babylon/{scss-daba/style.css → style.css} +0 -0
  60. /package/lib/styles/styles/babylon/{scss-daba/style.scss → style.scss} +0 -0
  61. /package/lib/styles/styles/babylon/{scss-daba/swiper-bundle.min.css → swiper-bundle.min.css} +0 -0
@@ -0,0 +1,876 @@
1
+ @use './mixins.scss' as *;
2
+ @use './variables.scss' as *;
3
+ /*--------------------------------------------------------------
4
+ 5. Slider
5
+ ----------------------------------------------------------------*/
6
+ .cs_slider {
7
+ position: relative;
8
+ }
9
+ .slick-arrow {
10
+ cursor: pointer;
11
+ }
12
+
13
+ .slick-slide > div {
14
+ display: flex;
15
+ flex-direction: column;
16
+ }
17
+ .cs_remove_overflow {
18
+ .slick-list {
19
+ overflow: visible;
20
+ }
21
+
22
+ .slick-slide {
23
+ opacity: 0;
24
+ visibility: hidden;
25
+ transition: all 0.3s linear;
26
+
27
+ &.slick-active {
28
+ opacity: 1;
29
+ visibility: visible;
30
+ }
31
+ }
32
+ }
33
+ .cs_slider_gap_24 {
34
+ .slick-slide {
35
+ padding-left: 12px;
36
+ padding-right: 12px;
37
+ }
38
+ .slick-list {
39
+ margin-left: -12px;
40
+ margin-right: -12px;
41
+ }
42
+ }
43
+ .cs_slider_gap_30 {
44
+ .slick-slide {
45
+ padding-left: 15px;
46
+ padding-right: 15px;
47
+ }
48
+ .slick-list {
49
+ margin-left: -15px;
50
+ margin-right: -15px;
51
+ }
52
+ @include full-tablet {
53
+ //1024
54
+ .slick-slide {
55
+ padding-left: 12px;
56
+ padding-right: 12px;
57
+ }
58
+ .slick-list {
59
+ margin-left: -12px;
60
+ margin-right: -12px;
61
+ }
62
+ }
63
+ }
64
+ .cs_slider_gap_40 {
65
+ .slick-slide {
66
+ padding-left: 20px;
67
+ padding-right: 20px;
68
+ }
69
+ .slick-list {
70
+ margin-left: -20px;
71
+ margin-right: -20px;
72
+ }
73
+ @include full-tablet {
74
+ .slick-slide {
75
+ padding-left: 12px;
76
+ padding-right: 12px;
77
+ }
78
+ .slick-list {
79
+ margin-left: -12px;
80
+ margin-right: -12px;
81
+ }
82
+ }
83
+ }
84
+ .cs_slider_gap_60 {
85
+ .slick-slide {
86
+ padding-left: 30px;
87
+ padding-right: 30px;
88
+ }
89
+ .slick-list {
90
+ margin-left: -30px;
91
+ margin-right: -30px;
92
+ }
93
+ @include full-tablet {
94
+ .slick-slide {
95
+ padding-left: 12px;
96
+ padding-right: 12px;
97
+ }
98
+ .slick-list {
99
+ margin-left: -12px;
100
+ margin-right: -12px;
101
+ }
102
+ }
103
+ }
104
+
105
+ .cs_show_shadow_20 {
106
+ .slick-list {
107
+ padding-bottom: 20px;
108
+ margin-bottom: -20px;
109
+ }
110
+ }
111
+
112
+ .cs_slider_arrows.cs_style_1 {
113
+ display: flex;
114
+ gap: 12px;
115
+ .cs_left_arrow,
116
+ .cs_right_arrow {
117
+ height: 45px;
118
+ width: 70px;
119
+ border-radius: var(--btn_radius);
120
+ background: var(--cl_btn-arrow);
121
+ color: var(--cl_btn-arrow-icon);
122
+ flex: none;
123
+ transition: all 0.4s ease;
124
+ backdrop-filter: blur(10px);
125
+ position: absolute;
126
+ top: 30%;
127
+ z-index: 5;
128
+ cursor: pointer;
129
+ &:hover {
130
+ background: var(--cl_btn-arrow-hover);
131
+ color: var(--cl_btn-arrow-icon-hover);
132
+ }
133
+ }
134
+ .cs_left_arrow {
135
+ left: 0px;
136
+ }
137
+ .cs_right_arrow {
138
+ right: -2px;
139
+ }
140
+ }
141
+
142
+ .cs_slider_arrows.cs_style_2 {
143
+ .cs_left_arrow,
144
+ .cs_right_arrow {
145
+ position: absolute;
146
+ top: 50%;
147
+ transform: translateY(-50%);
148
+ cursor: pointer;
149
+ transition: all 0.3s ease;
150
+ font-size: 20px;
151
+ color: var(--cl_btn-arrow);
152
+ &:hover {
153
+ &:hover {
154
+ color: var(--cl_btn-arrow-hover);
155
+ }
156
+ }
157
+ }
158
+ .cs_right_arrow {
159
+ // right: calc((100vw - 1300px) / 2 / 2);
160
+ // margin-right: -28px;
161
+ right: 2svw;
162
+ @include full-tablet {
163
+ right: calc((100vw - 1140px) / 2 / 2);
164
+ margin-right: -22px;
165
+ }
166
+ @include small-desktop {
167
+ //1199
168
+ right: calc((100vw - 960px) / 2 / 2);
169
+ margin-right: -22px;
170
+ }
171
+ @media (max-width: 1050px) {
172
+ margin-right: 0px;
173
+ }
174
+ }
175
+ .cs_left_arrow {
176
+ // left: calc((100vw - 1300px) / 2 / 2);
177
+ // margin-left: -28px;
178
+ left: 2svw;
179
+ @include full-tablet {
180
+ left: calc((100vw - 1140px) / 2 / 2);
181
+ margin-left: -22px;
182
+ }
183
+ @include small-desktop {
184
+ //1199
185
+ left: calc((100vw - 960px) / 2 / 2);
186
+ margin-left: -22px;
187
+ }
188
+ @media (max-width: 1050px) {
189
+ margin-left: 0px;
190
+ }
191
+ }
192
+ }
193
+
194
+ .cs_slider_arrows.cs_style_3 {
195
+ .cs_left_arrow,
196
+ .cs_right_arrow {
197
+ position: absolute;
198
+ top: 50%;
199
+ transform: translateY(-50%);
200
+ transition: all 0.3s ease;
201
+ @include small-desktop {
202
+ //1199
203
+ top: 35%;
204
+ }
205
+ &:hover {
206
+ color: var(--cl_btn-arrow-icon-hover);
207
+ }
208
+ }
209
+ .cs_left_arrow {
210
+ left: 6.6%;
211
+ @include small-desktop {
212
+ //1199
213
+ left: 30px;
214
+ }
215
+ }
216
+ .cs_right_arrow {
217
+ right: 6.6%;
218
+ @include small-desktop {
219
+ //1199
220
+ right: 30px;
221
+ }
222
+ }
223
+ }
224
+
225
+ .cs_slider_arrows.cs_style_4 {
226
+ display: flex;
227
+ gap: 20px;
228
+ .cs_left_arrow,
229
+ .cs_right_arrow {
230
+ height: 45px;
231
+ width: 70px;
232
+ border-radius: var(--btn_radius);
233
+ background: var(--cl_btn-arrow);
234
+ color: var(--cl_btn-arrow-icon);
235
+ transition: all 0.4s ease;
236
+ font-size: 10px;
237
+ &:hover {
238
+ background-color: var(--cl_btn-arrow-hover);
239
+ color: var(--cl_btn-arrow-icon-hover);
240
+ }
241
+ }
242
+ }
243
+
244
+ .cs_pagination.cs_style_1 {
245
+ display: flex;
246
+ justify-content: center;
247
+
248
+ ul {
249
+ list-style: none;
250
+ padding: 0;
251
+ margin: 0;
252
+ margin-top: 65px;
253
+ display: flex !important;
254
+ gap: 15px;
255
+ @include full-tablet {
256
+ //1024
257
+ margin-top: 15px;
258
+ gap: 8px;
259
+ justify-content: center;
260
+ padding: 20px;
261
+ }
262
+ }
263
+
264
+ li {
265
+ height: 10px;
266
+ width: 10px;
267
+ background-color: var(--cl_btn-dots);
268
+ border: none;
269
+ border-radius: 50%;
270
+ margin: 0;
271
+ cursor: pointer;
272
+ position: relative;
273
+ transition: all 0.3s ease;
274
+
275
+ &.slick-active {
276
+ background-color: var(--cl_btn-dots-active);
277
+ border-color: var(--cl_btn-dots-active);
278
+ }
279
+ }
280
+
281
+ button {
282
+ display: none;
283
+ }
284
+ &.cs_type_1 {
285
+ position: absolute;
286
+ z-index: 5;
287
+ left: 50%;
288
+ transform: translateX(-50%);
289
+ bottom: 15%;
290
+ ul {
291
+ margin: 0;
292
+ }
293
+ li {
294
+ border-color: #fff;
295
+ &.slick-active {
296
+ border-color: var(--cl_accent);
297
+ }
298
+ }
299
+ }
300
+ &.cs_type_2,
301
+ &.cs_type_3 {
302
+ ul {
303
+ list-style: none;
304
+ padding: 0;
305
+ margin: 0;
306
+ margin-top: 65px;
307
+ display: flex !important;
308
+ gap: 15px;
309
+ @include full-tablet {
310
+ //1024
311
+ margin-top: 15px;
312
+ gap: 8px;
313
+ }
314
+ }
315
+ li {
316
+ height: 10px;
317
+ width: 10px;
318
+ background-color: var(--cl_btn-dots);
319
+ border: none;
320
+ &.slick-active {
321
+ background-color: var(--cl_btn-dots-active);
322
+ }
323
+ }
324
+ }
325
+ &.cs_type_3 {
326
+ position: absolute;
327
+ right: -15px;
328
+ top: 50%;
329
+ transform: translateY(-50%);
330
+ width: calc((100% - 1296px) / 2);
331
+ @include full-tablet {
332
+ width: calc((100% - 1116px) / 2);
333
+ }
334
+ @include small-desktop {
335
+ //1199
336
+ width: calc((100% - 936px) / 2);
337
+ }
338
+ @include full-tablet {
339
+ //1024
340
+ width: 100%;
341
+ position: initial;
342
+ transform: initial;
343
+ }
344
+ ul {
345
+ margin: 0;
346
+ flex-direction: column;
347
+ @include full-tablet {
348
+ //1024
349
+ flex-direction: row;
350
+ margin-top: 20px;
351
+ }
352
+ }
353
+ }
354
+ &.cs_type_3--left {
355
+ position: absolute;
356
+ left: -15px;
357
+ top: 50%;
358
+ transform: translateY(-50%);
359
+ width: calc((100% - 1296px) / 2);
360
+ @include full-tablet {
361
+ width: calc((100% - 1116px) / 2);
362
+ }
363
+ @include small-desktop {
364
+ //1199
365
+ width: calc((100% - 936px) / 2);
366
+ }
367
+ @include full-tablet {
368
+ //1024
369
+ width: 100%;
370
+ position: initial;
371
+ transform: initial;
372
+ }
373
+ ul {
374
+ margin: 0;
375
+ flex-direction: column;
376
+ @include full-tablet {
377
+ //1024
378
+ flex-direction: row;
379
+ margin-top: 20px;
380
+ justify-content: center;
381
+ padding: 20px !important;
382
+ }
383
+ }
384
+ }
385
+ &.cs_type_4 {
386
+ position: absolute;
387
+ bottom: 423px;
388
+ width: 100%;
389
+ }
390
+ &.cs_color_1 {
391
+ li {
392
+ border-color: #fff;
393
+ &.slick-active {
394
+ border-color: var(--cl_accent);
395
+ }
396
+ }
397
+ }
398
+ }
399
+
400
+ .cs_slider_number.cs_style_1,
401
+ .cs_slider_number.cs_style_2 {
402
+ span {
403
+ display: inline-block;
404
+ position: relative;
405
+ }
406
+ .cs_current_number {
407
+ color: var(--cl_accent);
408
+ }
409
+
410
+ .cs_slider_number_seperator {
411
+ display: inline-block;
412
+ background-color: var(--cl_corp);
413
+ transform: rotate(25deg);
414
+ position: relative;
415
+ }
416
+ }
417
+ .cs_slider_number.cs_style_1 {
418
+ position: absolute;
419
+ bottom: 6px;
420
+ right: calc((100vw - 1300px) / 2 / 2);
421
+ margin-right: -18px;
422
+ .cs_current_number {
423
+ top: -10px;
424
+ font-size: 50px;
425
+ }
426
+ .cs_total_numbers {
427
+ top: 10px;
428
+ }
429
+ .cs_slider_number_seperator {
430
+ height: 56px;
431
+ width: 1px;
432
+ top: 15px;
433
+ }
434
+ @include full-tablet {
435
+ right: calc((100vw - 1140px) / 2 / 2);
436
+ }
437
+ @include small-desktop {
438
+ //1199
439
+ right: 40px;
440
+ margin-right: 0;
441
+ }
442
+ }
443
+ .cs_slider_number.cs_style_2 {
444
+ font-size: 160px;
445
+ line-height: 1em;
446
+ padding-bottom: 80px;
447
+ .cs_current_number {
448
+ top: -35px;
449
+ font-size: 215px;
450
+ }
451
+ .cs_total_numbers {
452
+ top: 35px;
453
+ }
454
+ .cs_slider_number_seperator {
455
+ height: 240px;
456
+ width: 4px;
457
+ top: 70px;
458
+ }
459
+ }
460
+ .cs_hover_show_arrows {
461
+ .cs_slider_arrows.cs_style_1 {
462
+ .cs_left_arrow,
463
+ .cs_right_arrow {
464
+ opacity: 0;
465
+ }
466
+ }
467
+ &:hover {
468
+ .cs_slider_arrows.cs_style_1 {
469
+ .cs_left_arrow,
470
+ .cs_right_arrow {
471
+ opacity: 1;
472
+ }
473
+ }
474
+ }
475
+ }
476
+
477
+ .cs_slider_navigation {
478
+ @include full-tablet {
479
+ //1024
480
+ position: absolute;
481
+ z-index: 8;
482
+ bottom: 70px;
483
+ display: flex;
484
+ gap: 15px;
485
+ left: 50%;
486
+ transform: translateX(-50%);
487
+ }
488
+ @include medium-tablet {
489
+ bottom: 50%;
490
+ width: 100%;
491
+ display: flex;
492
+ justify-content: space-between;
493
+ padding: 0px 10px;
494
+ }
495
+ .cs_swiper_button_prev,
496
+ .cs_swiper_button_next,
497
+ .cs_swiper_button_prevV2,
498
+ .cs_swiper_button_nextV2 {
499
+ position: absolute;
500
+ top: 50%;
501
+ transform: translateY(-50%);
502
+ transition: all 0.3s ease;
503
+ z-index: 5;
504
+ color: var(--cl_btn-light);
505
+ font-size: 20px;
506
+ &:hover {
507
+ color: var(--cl_btn-light -hover);
508
+ }
509
+ &.swiper-button-disabled {
510
+ opacity: 0.5;
511
+ cursor: default;
512
+ }
513
+ @include full-tablet {
514
+ //1024
515
+ position: initial;
516
+ transform: initial;
517
+ }
518
+ }
519
+ .cs_swiper_button_prev,
520
+ .cs_swiper_button_prevV2 {
521
+ left: 6.6%;
522
+ @include small-desktop {
523
+ //1199
524
+ left: 3%;
525
+ }
526
+ }
527
+ .cs_swiper_button_next,
528
+ .cs_swiper_button_nextV2 {
529
+ right: 6.6%;
530
+ @include small-desktop {
531
+ //1199
532
+ right: 3%;
533
+ }
534
+ }
535
+ }
536
+
537
+ .swiper-slide {
538
+ overflow: hidden;
539
+ .cs_hero.cs_style_1 {
540
+ .cs_hero_text {
541
+ position: relative;
542
+ top: 10px;
543
+ opacity: 0;
544
+ transition: all 0.9s ease;
545
+ user-select: none;
546
+ }
547
+ }
548
+ &.swiper-slide-active {
549
+ .cs_hero.cs_style_1 {
550
+ .cs_hero_text {
551
+ top: 0;
552
+ opacity: 1;
553
+ transition: all 0.9s ease 0.9s;
554
+ max-width: 90%;
555
+ margin-left: 5%;
556
+ }
557
+ }
558
+ }
559
+ }
560
+ .slick-vertical {
561
+ &.cs_gallery_slider_nav {
562
+ margin-top: -12px;
563
+ margin-bottom: -12px;
564
+ .slick-slide {
565
+ border: none;
566
+ padding: 12px 0;
567
+ }
568
+ @include full-tablet {
569
+ //1024
570
+ margin-top: -5px;
571
+ margin-bottom: -5px;
572
+ .slick-slide {
573
+ border: none;
574
+ padding: 5px 0;
575
+ }
576
+ }
577
+ }
578
+
579
+ .cs_gallery_slider_thumb_mini {
580
+ overflow: hidden;
581
+ cursor: pointer;
582
+ position: relative;
583
+ &::before {
584
+ content: '';
585
+ height: 100%;
586
+ width: 100%;
587
+ position: absolute;
588
+ left: 0;
589
+ top: 0;
590
+ border: 2px solid var(--cl_accent);
591
+ border-radius: inherit;
592
+ opacity: 0;
593
+ transition: all 0.4s ease;
594
+ }
595
+ }
596
+ .slick-current {
597
+ .cs_gallery_slider_thumb_mini {
598
+ &::before {
599
+ opacity: 1;
600
+ }
601
+ }
602
+ }
603
+ }
604
+ .cs_left_arrow_gallery,
605
+ .cs_right_arrow_gallery {
606
+ position: absolute;
607
+ height: 45px;
608
+ width: 70px;
609
+ border-radius: var(--btn_radius);
610
+ background: var(--cl_btn-arrow);
611
+ color: var(--cl_btn-arrow-icon);
612
+ top: 50%;
613
+ margin-top: -25px;
614
+ z-index: 2;
615
+ transition: all 0.3s ease;
616
+ cursor: pointer;
617
+ &:hover {
618
+ background: var(--cl_btn-arrow-hover);
619
+ color: var(--cl_btn-arrow-icon-hover);
620
+ }
621
+ }
622
+ .cs_left_arrow_gallery {
623
+ left: 25px;
624
+ }
625
+ .cs_right_arrow_gallery {
626
+ right: 25px;
627
+ }
628
+ .cs_gallery_hover_show_nav {
629
+ .cs_left_arrow_gallery,
630
+ .cs_right_arrow_gallery {
631
+ opacity: 0;
632
+ }
633
+ &:hover {
634
+ .cs_left_arrow_gallery,
635
+ .cs_right_arrow_gallery {
636
+ opacity: 1;
637
+ }
638
+ }
639
+ }
640
+ .cs_gallery_slider_thumb_item_2 {
641
+ height: calc(100vh - 0px);
642
+ padding: 100px 0 50px;
643
+ max-height: 1100px;
644
+ @include full-tablet {
645
+ //1024
646
+ padding: 100px 0;
647
+ height: 100vh;
648
+ max-height: initial;
649
+ }
650
+
651
+ @include small-tablet {
652
+ //575
653
+ min-height: 500px;
654
+ .cs_hero_title {
655
+ br {
656
+ display: none;
657
+ }
658
+ }
659
+ }
660
+ }
661
+ .cs_gallery_slider_nav_2_wrap {
662
+ width: 100%;
663
+ position: absolute;
664
+ bottom: 35px;
665
+ @include medium-tablet {
666
+ //767
667
+ bottom: 25px;
668
+ }
669
+ .cs_price_per {
670
+ color: rgba(255, 255, 255, 0.7);
671
+ position: relative;
672
+ bottom: 4px;
673
+ }
674
+ .cs_price {
675
+ margin-top: 5px;
676
+ }
677
+ }
678
+ .cs_gallery_slider_nav_2 {
679
+ width: 480px;
680
+ margin-left: auto;
681
+ @include small-desktop {
682
+ //1199
683
+ width: 350px;
684
+ }
685
+ @include full-tablet {
686
+ //1024
687
+ width: 250px;
688
+ }
689
+ @include medium-tablet {
690
+ //767
691
+ margin-right: auto;
692
+ }
693
+ .slick-slide {
694
+ padding-left: 5px;
695
+ padding-right: 5px;
696
+ &.slick-current {
697
+ .cs_gallery_slider_thumb_mini_2 {
698
+ &::before {
699
+ border-width: 2px;
700
+ border-color: var(--cl_accent);
701
+ }
702
+ }
703
+ }
704
+ }
705
+ .slick-list {
706
+ margin-left: -5px;
707
+ margin-right: -5px;
708
+ }
709
+ }
710
+ .cs_gallery_slider_thumb_mini_2 {
711
+ height: 120px;
712
+ cursor: pointer;
713
+ position: relative;
714
+ @include small-desktop {
715
+ //1199
716
+ height: 80px;
717
+ }
718
+ @include full-tablet {
719
+ //1024
720
+ height: 60px;
721
+ }
722
+ &::before {
723
+ content: '';
724
+ height: 100%;
725
+ width: 100%;
726
+ position: absolute;
727
+ left: 0;
728
+ top: 0;
729
+ border: 1px solid rgba(255, 255, 255, 0.5);
730
+ border-radius: inherit;
731
+ transition: all 0.4s ease;
732
+ }
733
+ }
734
+ .cs_gallery_slider_nav_2_in {
735
+ display: flex;
736
+ align-items: center;
737
+ @include medium-tablet {
738
+ //767
739
+ flex-direction: column;
740
+ text-align: center;
741
+ justify-content: center;
742
+ gap: 25px;
743
+ }
744
+ }
745
+ .cs_gallery_slider_thumb_2 {
746
+ position: relative;
747
+ &:after {
748
+ background: linear-gradient(0, rgba(0, 0, 0, 0.6), transparent);
749
+ bottom: -2px;
750
+ content: '';
751
+ height: 30%;
752
+ position: absolute;
753
+ width: 100%;
754
+ @include medium-tablet {
755
+ //767
756
+ height: 50%;
757
+ }
758
+ }
759
+ }
760
+ .cs_left_arrow_gallery_2,
761
+ .cs_right_arrow_gallery_2 {
762
+ position: absolute;
763
+ top: 50%;
764
+ transform: translateY(-50%);
765
+ transition: all 0.3s ease;
766
+ z-index: 5;
767
+ color: var(--cl_accent);
768
+ &:hover {
769
+ color: #fff;
770
+ }
771
+ }
772
+ .cs_left_arrow_gallery_2 {
773
+ left: 5%;
774
+ }
775
+ .cs_right_arrow_gallery_2 {
776
+ right: 5%;
777
+ }
778
+ @include full-tablet {
779
+ // 1024
780
+ .cs_mobile_hide {
781
+ display: none !important;
782
+ }
783
+ }
784
+ @include min-full-tablet {
785
+ // 992
786
+ .cs_mobile_show {
787
+ display: none !important;
788
+ }
789
+ }
790
+ @include medium-tablet {
791
+ //767
792
+ .cs_mobile_hide_md {
793
+ display: none !important;
794
+ }
795
+ }
796
+ @include min-medium-tablet {
797
+ //768
798
+ .cs_mobile_show_md {
799
+ display: none !important;
800
+ }
801
+ }
802
+ /*--------------------------------------------------------------
803
+ 19. Custom Slider
804
+ ----------------------------------------------------------------*/
805
+ .cs_custom_slide_item {
806
+ width: 100%;
807
+ height: 520px;
808
+ border-radius: 5px;
809
+ display: block;
810
+ position: relative;
811
+ overflow: hidden;
812
+ @media only screen and (min-width: 1025px) and (max-width: 1199px) {
813
+ height: 470px;
814
+ }
815
+ @media only screen and (min-width: 768px) and (max-width: 1024px) {
816
+ height: 350px;
817
+ }
818
+ @include medium-tablet {
819
+ //767
820
+ height: 300px;
821
+ }
822
+ }
823
+ .cs_custom_slide_arrow_left,
824
+ .cs_custom_slide_arrow_right {
825
+ position: absolute;
826
+ top: 50%;
827
+ transform: translateY(-505);
828
+ cursor: pointer;
829
+ transition: all 0.3s ease;
830
+ &:hover {
831
+ color: var(--cl_btn-arrow-hover);
832
+ }
833
+ @include full-tablet {
834
+ //1024
835
+ position: initial;
836
+ }
837
+ }
838
+ .cs_custom_slide_arrow_left {
839
+ left: calc((100vw - 1300px) / 2 / 2);
840
+ margin-left: -28px;
841
+ @include full-tablet {
842
+ left: calc((100vw - 1140px) / 2 / 2);
843
+ }
844
+ @include small-desktop {
845
+ //1199
846
+ left: calc((100vw - 860px) / 2 / 2);
847
+ }
848
+ }
849
+ .cs_custom_slide_arrow_right {
850
+ right: calc((100vw - 1300px) / 2 / 2);
851
+ margin-right: -28px;
852
+ @include medium-desktop {
853
+ right: calc((100vw - 1100px) / 2 / 2);
854
+ }
855
+ @include full-tablet {
856
+ right: calc((100vw - 1140px) / 2 / 2);
857
+ }
858
+ @include small-desktop {
859
+ //1199
860
+ right: calc((100vw - 860px) / 2 / 2);
861
+ }
862
+ }
863
+ .cs_custom_slide_arrows {
864
+ color: var(--cl_btn-arrow);
865
+ @include full-tablet {
866
+ //1024
867
+ display: flex;
868
+ justify-content: center;
869
+ gap: 15px;
870
+ padding-top: 60px;
871
+ }
872
+ @include medium-tablet {
873
+ //767
874
+ padding-top: 35px;
875
+ }
876
+ }