.ba-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	user-select: none;
	border-radius: 20px !important;
}

.ba-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.ba-before {
	z-index: 2;
	clip-path: inset(0 50% 0 0);
}

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

.ba-slider {
	position: absolute;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100%;
	background: transparent;
	outline: none;
	margin: 0;
	top: 0;
	left: 0;
	z-index: 10;
	cursor: ew-resize;
}

.ba-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 40px;
	height: 40px;
	background: transparent;
}

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

.ba-handle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px; /* Updated width */
	height: 50px; /* Updated height */
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid #FFF;
	border-radius: 16px; /* Updated border-radius */
	box-shadow: none;
}

.ba-label {
	position: absolute;
	bottom: 20px;
	padding: 2px 8px !important;
	background: #1D1D1D !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	pointer-events: none;
	z-index: 6;
	border-radius: 20px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ba-label-before {
	left: 20px;
}

.ba-label-after {
	right: 20px;
}