@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.ba-wrap{
	font-family:'Inter',sans-serif;
	width:100%;
}

.ba-slider{
	position:relative;
	width:100%;
	aspect-ratio:4/3;
	border-radius:24px;
	overflow:hidden;
	user-select:none;
	-webkit-user-select:none;
	touch-action:none;
	cursor:ew-resize;
}

.ba-slider img{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	pointer-events:none;
	max-width:none;
}

.ba-after{
	z-index:1;
}

.ba-before-wrap{
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:50%;
	overflow:hidden;
	z-index:2;
}

.ba-handle-line{
	position:absolute;
	top:0;
	bottom:0;
	left:50%;
	width:2px;
	background:#fff;
	transform:translateX(-50%);
	z-index:3;
	pointer-events:none;
}

.ba-handle{
	position:absolute;
	top:50%;
	left:50%;
	width:14px;
	height:44px;
	background:#fff;
	border-radius:8px;
	transform:translate(-50%,-50%);
	z-index:4;
	box-shadow:0 2px 8px rgba(0,0,0,.25);
}

.ba-labels{
	display:flex;
	justify-content:space-between;
	margin-top:14px;
	padding:0 4px;
	box-sizing:border-box;
}

.ba-label{
	color:#fff;
	font-size:16px;
	font-weight:500;
}
