.index-dark-slider {
	margin: 0;
	padding: 0;
	color: #fff;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.index-dark-slider__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.index-dark-slider__progress {
	position: absolute;
	left: 50%;
	bottom: 22px;
	z-index: 5;
	display: flex;
	gap: 8px;
	width: min(calc(100% / 1.22 - 48px), 680px);
	max-width: 680px;
	transform: translateX(-50%);
	pointer-events: auto;
}

.index-dark-slider__progress-item {
	position: relative;
	flex: 1 1 0;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	overflow: hidden;
	cursor: pointer;
}

.index-dark-slider__progress-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	border-radius: inherit;
	background: #fff;
}

.index-dark-slider__progress-item.is-done .index-dark-slider__progress-fill {
	width: 100%;
	transition: none;
}

.index-dark-slider__progress-item.is-active .index-dark-slider__progress-fill {
	width: 100%;
	transition: width linear;
	transition-duration: var(--dark-progress-ms, 5000ms);
}

.index-dark-slider__progress-item.is-active.is-reset .index-dark-slider__progress-fill {
	width: 0;
	transition: none;
}

.index-dark-slider__progress-item.is-paused .index-dark-slider__progress-fill {
	transition: none !important;
}

.index-dark-slider__swiper {
	overflow: hidden;
	width: 100%;
}

.index-dark-slider__slide {
	height: auto;
	box-sizing: border-box;
}

.index-dark-slider__card {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: 380px;
	padding: 48px 70px 56px;
	border-radius: 24px;
	background: #181c23;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	color: #fff;
}

.index-dark-slider__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 48%;
	min-width: 0;
}

.index-dark-slider__title {
	margin: 0 0 14px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
    color: #fff !important;
}

.index-dark-slider__price {
	margin: 0 0 28px;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.2;
	color: #fff;
}

.index-dark-slider__subtitle {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
	max-width: 420px;
}

.index-dark-slider__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 26px;
	border-radius: 999px;
	background: #ffd400;
	color: #222 !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.index-dark-slider__btn:hover {
	background: #f4c800;
	color: #222 !important;
	transform: translateY(-1px);
}

.index-dark-slider__media {
	position: absolute;
	right: 35px;
    bottom: -15px;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 54%;
	pointer-events: none;
}

.index-dark-slider__media img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: bottom right;
}

@media (max-width: 991px) {
	.index-dark-slider__card {
		min-height: 320px;
		padding: 36px 24px 48px;
	}

	.index-dark-slider__content {
		max-width: 55%;
	}
}

@media (max-width: 767px) {
	.index-dark-slider__progress {
		width: min(calc(100% / 1.12 - 24px), 100%);
		bottom: 14px;
	}

	.index-dark-slider__card {
		flex-direction: column;
		min-height: 0;
		padding: 28px 20px 40px;
	}

	.index-dark-slider__content {
		max-width: 100%;
		padding-bottom: 12px;
	}

	.index-dark-slider__media {
		position: relative;
		width: 100%;
		height: 200px;
		justify-content: center;
	}

	.index-dark-slider__media img {
		max-height: 200px;
		object-position: center bottom;
	}

	.index-dark-slider__title {
		font-size: 26px;
	}
}
