.walkthrough {
	border-radius: 0;
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	font-size: 14px;
	height: 100%;
	overflow: hidden;
	width: 100%;
	z-index: 1000;
	background: transparent;
}

.walkthrough .walkthrough-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: center;
	position: relative;
	width: 100%;
	height: 100%;
}

.walkthrough .walkthrough-body .prev-screen,
.walkthrough .walkthrough-body .next-screen {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent; /* Фон прозрачный по умолчанию */
	border: 0;
	border-radius: 50%; /* Круглая форма */
	color: rgba(255, 255, 255, 0.25); /* Цвет стрелок */
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 24px; /* Размер стрелки */
	opacity: 1;
	outline: none;
	width: 40px; /* Фиксированный размер круга */
	height: 40px; /* Фиксированный размер круга */
	display: flex; /* Используем flex для центрирования */
	align-items: center; /* Вертикальное центрирование */
	justify-content: center; /* Горизонтальное центрирование */
	line-height: 1; /* Убираем влияние высоты строки */
	padding: 0; /* Убираем padding, чтобы не смещать содержимое */
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 1000;
}

.walkthrough .walkthrough-body .prev-screen i,
.walkthrough .walkthrough-body .next-screen i {
	line-height: 1; /* Убедимся, что иконка не смещается из-за высоты строки */
	font-style: normal;
}

.walkthrough .walkthrough-body .prev-screen {
	left: 10px; /* Небольшой отступ от края */
	padding: 2px 3px 2px 0;
}

.walkthrough .walkthrough-body .next-screen {
	right: 10px; /* Небольшой отступ от края */
	padding: 2px 0 2px 3px;
}

.walkthrough .walkthrough-body .prev-screen:hover,
.walkthrough .walkthrough-body .prev-screen:active,
.walkthrough .walkthrough-body .next-screen:hover,
.walkthrough .walkthrough-body .next-screen:active {
	background: rgba(0, 0, 0, 0.4); /* Полупрозрачный темный круг при наведении */
	color: #fff; /* Стрелка становится полностью белой */
	transform: translateY(-50%) scale(1.1); /* Небольшое увеличение при наведении */
	transform-origin: center;
}

.walkthrough .walkthrough-body .prev-screen:disabled,
.walkthrough .walkthrough-body .next-screen:disabled {
	opacity: 0;
}

.walkthrough .walkthrough-body .screens {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}

.walkthrough .walkthrough-body .screens .screen {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(-72px);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.walkthrough .walkthrough-body .screens .screen.active {
	opacity: 1;
	transform: translateX(0) scale(1);
	transition-delay: 0.4s;
}

.walkthrough .walkthrough-body .screens .screen.active ~ .screen {
	opacity: 0;
	transform: translateX(72px);
}

.walkthrough .walkthrough-body .screens .slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.walkthrough .walkthrough-body .controls {
	position: absolute;
	bottom: 0;
	left: 100px;
	right: 0;
	background: transparent;
	padding: 10px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.walkthrough .walkthrough-body .caption {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: bold;
	text-align: center;
	margin-bottom: 4px;
	background: var(--footer-bg-gradient-color-1);
	opacity: 60%;
	padding: 5px 10px;
	border-radius: 10px;
}

.walkthrough .walkthrough-body .walkthrough-pagination {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
}

.walkthrough .walkthrough-body .walkthrough-pagination .dot {
	background: var(--footer-bg-gradient-color-1);
	opacity: 60%;
	cursor: pointer;
	border-radius: 8px;
	height: 16px;
	width: 16px;
	margin: 0 6px;
	transform: scale(0.8);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.walkthrough .walkthrough-body .walkthrough-pagination .dot.active {
	background: var(--footer-bg-gradient-color-1);
	opacity: 80%;
	cursor: pointer;
	transform: scale(1);
	transition-delay: 0.4s;
}