

.images-compare-container {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.images-compare-before {
	will-change: clip;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.images-compare-after {
	pointer-events: none;
}

.images-compare-before img, .images-compare-after img {
	max-width: 100%;
	height: auto;
	display: block;
}

.images-compare-separator {
	position: absolute;
	background: #be1522;
		height: 100%;
	width: 4px;
	z-index: 4;
	left: 0;
	top: 0;
}

.images-compare-handle {
	height: 44px;
	width: 44px;

	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -22px;
	margin-top: -22px;
	border: 3px solid #be1522;
	-webkit-border-radius: 1000px;
	-moz-border-radius: 1000px;
	border-radius: 1000px;
	-webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
	z-index: 40;
	background: #be1522 !important;
	cursor: move;
}

.images-compare-left-arrow, .images-compare-right-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
	top: 50%;
	margin-top: -5px;
}

.images-compare-left-arrow {
	border-right: 6px solid white;
	left: 50%;
	margin-left: -16px;
}

.images-compare-right-arrow {
	border-left: 6px solid white;
	right: 50%;
	margin-right: -16px;
}
.images-compare-handle::before {
  bottom: 50%;
  margin-bottom: 20px;
   background: #be1522 !important;
}
.images-compare-handle::after {
  top: 50%;
  margin-top: 20px;
  background: #be1522 !important;
}
.images-compare-handle::after, .images-compare-handle::before {
  width: 8px;
  height: 9999px;
  left: 50%;
  margin-left: -4px;
  background: #be1522 !important;
}
.images-compare-handle::after, .images-compare-handle::before, .images-compare-handle::after, .images-compare-handle::before {
  content: " ";
  display: block;
  background: #fff;
    background-color: rgb(255, 255, 255);
  position: absolute;
  z-index: 30;
}

.images-compare-label {
	font-family: sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	color: rgba(0, 0, 0, 0.4);
	background: rgba(255, 255, 255, 0.7);
	padding: 10px;
	border-radius: 5px;
	pointer-events: none;
	display: none;
}

.images-compare-container .images-compare-label {
	display: inherit;
}

.images-compare-before .images-compare-label {
	left: 10px;
}

.images-compare-after .images-compare-label {
	left: auto;
	right: 10px;
}