2025-11-20 10:42:33 +03:00
|
|
|
.container {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.prevButtonWrapper {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
2025-11-21 12:55:22 +03:00
|
|
|
left: -60px;
|
2025-11-20 10:42:33 +03:00
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nextButtonWrapper {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
2025-11-21 12:55:22 +03:00
|
|
|
right: -60px;
|
2025-11-20 10:42:33 +03:00
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
|
|
transform: translateY(-50%) rotate(180deg);
|
|
|
|
|
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
pointer-events: none;
|
2025-11-21 15:41:57 +03:00
|
|
|
}
|
|
|
|
|
|
2025-11-23 13:15:45 +03:00
|
|
|
:global(.swiper) {
|
2025-11-23 16:18:23 +03:00
|
|
|
@container timeframe-slider (width <= 768px) {
|
2025-11-23 16:09:23 +03:00
|
|
|
padding: 0 40px;
|
2025-11-23 13:15:45 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-23 16:09:23 +03:00
|
|
|
:global(.swiper-slide-visible) {
|
2025-11-21 15:41:57 +03:00
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
2025-11-23 16:18:23 +03:00
|
|
|
@container timeframe-slider (width < 768px) {
|
2025-11-21 15:41:57 +03:00
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-23 16:09:23 +03:00
|
|
|
:global(.swiper-slide-fully-visible) {
|
2025-11-21 15:41:57 +03:00
|
|
|
opacity: 1;
|
2025-11-20 10:42:33 +03:00
|
|
|
}
|