.comparison-container {
    padding-top: 30px;
}

.comparison-container .title {
    margin: 0 auto 20px;
    padding: 0 35px;
    max-width: 880px;
    font-size: 30px;
    font-weight: 100;
    text-align: center;
    box-sizing: content-box;
}

@media (min-width: 1024px) {
    .comparison-container {
        padding-top: 59px;
    }

    .comparison-container .title {
        margin: 0 auto 36px;
        font-size: 66px;
    }   
}

.comparison {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    cursor: col-resize;
    overflow: hidden;
}

.comparison .mouse-capture {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.comparison .label {
    position: absolute;
    z-index: 2;
    top: 0;
    padding: 8px 22px;
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    background-color: rgba(141, 198, 63, 0.9);
    white-space: nowrap;
}

.comparison .label-left {
    left: 0;
}

.comparison .label-right {
    right: 0;
}

.comparison .comparison-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}

.comparison .image-left {
    z-index: 1;
    left: 0;
}

.comparison .comparison-image img,
.comparison .comparison-image picture {
    display: block;
    width: 100%;
}

.comparison .image-right {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 50%;
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
}

.comparison .image-right .large-img {
    display: none;
    position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center right;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-color: #fff;
}

@media (min-width: 767px) {
    .comparison .image-right .large-img {
        display: block;
    }   
}

.comparison .comparison-handle {
    position: absolute;
    z-index: 2;
	top: 0;
	left: 50%;
	width: 16px;
	height: 100%;
	box-shadow: 0 3px 25px rgba(0,0,0,0.29);
	background-color: #fff;
	transform: translateX(-50%);
}

.comparison .comparison-handle::before {
    content: "";
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	background-image: url(/includes/public/assets/shared/svg/icon-AB-control.svg);
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transform: translate(-50%,-50%);
}