.ba-container-4806 {
	position: relative;
	width: 100%;
	height: 100%; /* Important for vh/px sizes */
	overflow: hidden;
	user-select: none;
	border-radius: 8px;
	display: flex;
    touch-action: pan-y; /* allow vertical scroll outside, block horizontal on element */
}
.ba-img-after-4806 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.ba-before-wrapper-4806 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	clip-path: inset(0 50% 0 0); /* Fallback */
}
.ba-img-before-4806 {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.ba-slider-4806 {
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	background: white;
	z-index: 2;
	cursor: ew-resize;
	transform: translateX(-50%);
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.ba-slider-handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	border: 1px solid rgba(255,255,255,0.5);
	transition: background 0.2s;
}
.ba-slider-handle:hover {
	background: rgba(255,255,255,1);
}
.ba-slider-handle svg {
	width: 16px;
	height: 16px;
	color: #333;
}
.ba-label {
	position: absolute;
	top: 20px;
	padding: 5px 12px;
	background: rgba(0,0,0,0.6);
	color: white;
	font-size: 14px;
	border-radius: 4px;
	backdrop-filter: blur(4px);
}
.ba-label-before {
	left: 20px;
	z-index: 2;
}
.ba-label-after {
	right: 20px;
	z-index: 0;
}
