@charset "utf-8";
/* CSS Document */
.ba-slider {
    position: relative;
    overflow: hidden;

	margin:0em 2em;
}
 
.ba-slider img {
    width: 100%;
    display:block;
    max-width:none;
	overflow: hidden;
	padding: 0em 1em;
	box-sizing: border-box;
}
 
.ba-slider .resize {
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 85%;
    overflow: hidden;
}


.ba-slider .handle { /* Thin line seperator */
	position: absolute;
	left: 85%;
	top:0;
	bottom: 0;
	width:1px ;
	margin-left:;
	background-color: white;
	cursor: ew-resize;
	overflow: visible;
}
 
.ba-slider .handle:after {  /* Big orange knob  */
	position: absolute;
	top: 0px;
	padding: .2em 1em;
	transform: translate(-50% );
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	letter-spacing: .1vw;
	content: '\226ASLIDE\226B';
	color: white;
	font-weight: normal;
	font-size: 1.5vw;
	text-align: center;
	background: rgba(1,89,228,1); 
	border: 1px solid hsla(238,100%,20%,1.00);
	border-radius: 3vw;
	transition: all 0.3s ease;
	overflow: hidden;
	-webkit-box-shadow: 5px 6px 15px hsla(220,100%,16%,1.00);
	box-shadow: 5px 6px 15px hsla(220,100%,16%,1.00);
}
#compare{
	box-shadow: none;
	border: none;
}
/*.ba-slider .handle.ba-draggable:after {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    line-height:50px;
    font-size:30px;
	overflow: hidden;
}
*/
@media (max-width: 550px){
	.ba-slider {
		margin:0em 0em;
	}
	.ba-slider .handle:after{
		font-size: 3vw;
	}
}