/* =============================================
   02_UI_COMPONENTS / ui-swiper
   Базовые стили слайдера Swiper + пагинация + кнопки.
   ============================================= */

.swiper {
	overflow: hidden;
}
.swiper-initialized {
	touch-action: pan-y;
}
.swiper-wrapper {
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	display: flex;
	position: relative;
}
.swiper-vertical .swiper-wrapper {
	flex-direction: column;
}
.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
}
.swiper-initialized .swiper-slide {
	flex-shrink: 0;
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	transform: translate3d(0px, 0, 0);
}
.swiper-button-lock {
	display: none !important;
}

/* ── Пагинация ── */

.swiper-debtpagination {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	row-gap: 10px;
	justify-content: center;
}
.swiper-debtpagination .swiper-pagination-bullet {
	cursor: pointer;
	width: 40px;
	flex: 0 0 40px;
	height: 2px;
	border-radius: 10px;
	background-color: var(--whiteColor);
	display: block;
	transition: background-color 0.3s;
}
.swiper-debtpagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--greenColor4);
}

/* ── Кнопки навигации ── */

.swiper-button {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background-color: var(--whiteColor);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1);
	transition: color 0.3s, outline-color 0.3s;
	outline: 2px solid transparent;
}
.swiper-button svg {
	display: none;
}
.swiper-button:active {
	outline-color: rgba(7, 158, 108, 0.2);
}
.swiper-button.swiper-button-disabled {
	pointer-events: none;
	color: #879980;
}

/* ── Hover ── */

@media (any-hover: hover), (pointer: fine) {
	html:not([data-fls-touch]) .swiper-debtpagination .swiper-pagination-bullet:hover {
		background-color: var(--greenColor4);
	}
	html:not([data-fls-touch]) .swiper-button:hover {
		color: var(--greenColor4);
	}
}
