.ic-5dc0e121-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ic-5dc0e121-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
}

.ic-5dc0e121-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ic-5dc0e121-img-after {
	z-index: 1;
}

.ic-5dc0e121-img-before {
	z-index: 2;
	clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.ic-5dc0e121-slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	z-index: 4;
	margin: 0;
	cursor: ew-resize;
	outline: none;
}

.ic-5dc0e121-slider::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 40px;
	height: 100%;
	background: transparent;
	cursor: ew-resize;
}

.ic-5dc0e121-slider::-moz-range-thumb {
	width: 40px;
	height: 100%;
	background: transparent;
	cursor: ew-resize;
	border: none;
}

.ic-5dc0e121-handle-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--position);
	width: 40px;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.ic-5dc0e121-handle-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background-color: #fff;
	transform: translateX(-50%);
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.ic-5dc0e121-handle {
	position: relative;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.ic-5dc0e121-handle svg {
	width: 24px;
	height: 24px;
	color: #333;
}

.ic-5dc0e121-tooltip {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.ic-5dc0e121-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 4px;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}

.ic-5dc0e121-container:hover .ic-5dc0e121-tooltip {
	opacity: 1;
}

.ic-5dc0e121-caption {
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
	color: #666;
}