.comparisons {
	margin-left: -2rem;
	margin-right: -2rem;
	display: flex;
	min-height: 39vw;
}

@media screen and (min-width: 1650px) {
	.comparisons {
		min-height: 33vw;
	}
}

.comparison {
   -webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	overflow: hidden;
	position: relative;
}

.comparison-wrapper {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

@media screen and (max-width: 1000px) {
	.comparison-wrapper {
		padding: 1rem;
	}

	.comparisons {
		margin-left: -1rem;
		margin-right: -1rem;
	}
}

.comparison-wide {
	width: 70%;
}

.comparison-tall {
	flex-grow: 1;
}

.comparison {
/*	padding-bottom: 56%;*/
	height: 100%;
}

.comparison__bottom,
.comparison__top {
	width: 100%;
	height: 100%;
	background-repeat:no-repeat;
	background-color: white;
	background-size: 100% auto;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
}

.comparison__bottom img,
.comparison__top img {
	max-width: none;
}

.comparison__top {
	width: 50%;
}

.comparison__scroller {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 100px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.9;
	transition: opacity 0.12s ease-in-out;
	pointer-events: auto;
	cursor: pointer;
	box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
	margin-top: -25px;
}


.comparison__scroller:hover {
	opacity: 1;
}

.-scrolling{
	pointer-events:none;
	opacity: 1;
}

.comparison__scroller-thumb {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	padding: 7px;
}

.comparison__scroller svg {
	fill: #ff8484;
}

.comparison__scroller::before,
.comparison__scroller::after {
	content:" ";
	display: block;
	width: 7px;
	height: 9999px;
	position: absolute;
	left: 50%;
	margin-left: -3.5px;
	z-index: 30;
	transition:0.1s;
	box-shadow: 3.5px 0px 7px rgba(100, 100, 100, 0.2);
   background: #ff8484;
}
.comparison__scroller::before {
	top: 49px;
}
.comparison__scroller::after {
	bottom: 49px;
}

.comparison__scroller > .comparison__scroller-thumb {
	border: 6px solid #ff8484;
}
