@charset "utf-8";

/* baSlider
------------------------*/
.baSlider {
	margin-top: 40px;
	margin-bottom: 40px;
}
.baSlider:first-child {
	margin-top: 0;
}
.baSlider:last-child {
	margin-bottom: 0;
}
.baSlider__target {
	position: relative;
	overflow: hidden;
	width: 650px;
	height: 400px;
	margin: 0 auto;
}
.baSlider img {
	width: 100%;
	height: 100%;
	max-width: initial;
	display: block;
}
.baSlider__resize {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	overflow: hidden;
}
.baSlider__handle {
	/* Thin line seperator */
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 0px;
	margin-left: -2px;
	background: rgba(0, 0, 0, 0.5);
	cursor: ew-resize;
}
.baSlider__handle:after {
	/* Circle knob	*/
	position: absolute;
	top: 45%;
	width: 50px;
	height: 50px;
	margin: -23px 0 0 -23px;
	content: "< >";
	color: black;
	font-weight: lighter;
	font-size: 24px;
	text-align: center;
	line-height: 50px;
	background: #FFFFFF;
	opacity: .6;
	border-radius: 50%;
	transition: all 0.3s ease;
}
.baSlider__handle.s_draggable:after {
	width: 50px;
	height: 50px;
	margin: -23px 0 0 -23px;
	line-height: 50px;
	font-size: 24px;
}
.baSlider__handle.s_draggable:after {
	width: 50px;
	height: 50px;
	margin: -23px 0 0 -23px;
	line-height: 50px;
	font-size: 24px;
}
@media screen and (max-width: 900px) {
	.baSlider__target {
		width: 100%;
		height: 100%;
	}
	.baSlider__handle:after {
		/* Circle knob	*/
		position: absolute;
		top: 45%;
		width: 50px;
		height: 50px;
		margin: -23px 0 0 -23px;
		content: "< >";
		color: black;
		font-weight: lighter;
		font-size: 24px;
		text-align: center;
		line-height: 50px;
		background: #FFFFFF;
		opacity: .6;
		border-radius: 50%;
		transition: all 0.3s ease;
	}
}
