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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.swiper-slide-next) {
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
|
|
|
|
@media (width <=576px) {
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.swiper-slide-prev) {
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
|
|
|
|
@media (width <=576px) {
|
|
|
|
|
opacity: 0.4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:global(.swiper-slide-active) {
|
|
|
|
|
opacity: 1;
|
2025-11-20 10:42:33 +03:00
|
|
|
}
|