/**
 * Compare Wrapper
 */
.psv-compare-wrapper {
	position: relative;
	z-index: 10;
	background-color: transparent;
	overflow: hidden;
	box-shadow: 0 0 1px #888;
	border: 0;
	border-radius: 0;
	margin-top: 40px;
	margin-bottom: 40px;
}

.psv-compare-inner {
	position: relative;
	padding: 47% 0 0 0;
}

.psv-compare-it {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.psv-compare-left {
	left: 0;
	background-position: top left;
	z-index: 0;
}

.psv-compare-right {
	right: 0;
	background-position: top right;
	z-index: 1;
}

.psv-compare-front {
	width: 50%; /* start at the middle */
}

/* The Handle */
.psv-compare-handle:before,
.psv-compare-handle:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 0px;
	top: 0;
}

.psv-compare-handle:before {
	right: 5px;
}

.psv-compare-handle:after {
	left: 5px;
}

.psv-compare-handle.psv-dragging:before,
.psv-compare-handle.psv-dragging:after {
	width: 160px;
}

.psv-compare-handle {
	position: absolute;
	z-index: 99;
	top: 0;
	left: -2.5px;
	height: 100%;
	width: 5px;
    background-color: #1652DB;
	cursor: move;
}

.psv-compare-handle .psv-slide-right,
.psv-compare-handle .psv-slide-left {
	position: absolute;
	top: 50%;
	margin-top: -30px;
	width: 30px;
	font-size: 1.5em;
	color: #fff;
	text-align: center;
	z-index: 99;
	background-color: inherit;
	transition: all .4s ease-in-out;
}

.psv-compare-handle .psv-slide-right,
.psv-compare-handle .psv-slide-left,
.psv-compare-handle .psv-slide-right .fa,
.psv-compare-handle .psv-slide-left .fa {
	line-height: 60px;
	height: 60px;
	display: inline-block;
	vertical-align: top;
}

.psv-compare-handle .psv-slide-right {
	left: 5px;
	/*padding: 0 15px 0 10px;*/
	border-radius: 0 30px 30px 0;
}

.psv-compare-handle .psv-slide-left {
	left: -30px;
	/*padding: 0 10px 0 15px;*/
	/*text-align: right;*/
	border-radius: 30px 0 0 30px;
}

.psv-compare-handle .psv-slide-right:hover,
.psv-compare-handle .psv-slide-left:hover,
.psv-compare-handle:hover .psv-slide-right,
.psv-compare-handle:hover .psv-slide-left {
	opacity: 0.8;

}


/**
 * The Content
 */
.psv-compare-it-inner {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.psv-content {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}

.psv-compare-left .psv-content {
	left: 0;
}

.psv-compare-right .psv-content {
	right: 0;
}

.psv-content-video,
.psv-content-post {
	position: relative;
}

.psv-content-video .premise-video,
.psv-content-image {
	position: absolute;
	margin: 0;
	padding: 0;
}

.psv-content-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.psv-content-video,
.premise-video,
.psv-content-post,
.psv-content-image {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

/* Post or Page */
.psv-content-post {
	padding: 20px 20px 20px 40px;
	overflow: auto;
}