/* 
 * Image comparison
 */
* {box-sizing: border-box;}
.img-comp-container {
	position: relative;
	overflow-y: hidden;
}

.img-comp-img {
	position: absolute;
	width: auto;
	height: auto;
	overflow: hidden;
}

.img-comp-img img {
	display: block;
	vertical-align: middle;
}

.img-comp-slider {
	position: absolute;
	z-index: 10;
	cursor: ew-resize;
	width: 8px;
	height: 56px;
	background-image: url(../images/handle.gif);
	margin-top: 25%;
}
.img-comp-overlay {
	z-index: 9;
}
.img-comp-overlay-fs { /* fullscreen needs separate class for JS */
	z-index: 9;
}
.img-comp-label {
	font-size: 1em;
	padding: .25em .75em;
	position: absolute;
	top: 0;
	background-color: rgba(0,0,0,.6);
	color: white;
	z-index: 8;
	white-space: nowrap;
	line-height: 18px;
}
.img-comp-left {
	float: left;
	left: 0;
}
.img-comp-right {
	float: right;
	right: 0;
}
/*
 * Full screen comparison
 */
.img-comp-fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	background-color: rgba(0,0,0,.8);
	display: none;
}
.img-comp-imgbox {
	width: 1920px;
	height: 1080px;
	margin: 20px auto;
	position: relative;
	background-color: grey;
}
.img-comp-fullscreen .img-comp-img {
	display: block;
}
.img-comp-controls {
	top: 0;
	width: 100%;
	height: 50px;
	text-align: right;
	padding-right: 3%;
}
.img-comp-controls .icon {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50px;
}
.img-comp-controls .close {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIyIDIgMjAgMjAiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48bGluZSB4MT0iMTgiIHgyPSI2IiB5MT0iNiIgeTI9IjE4Ii8+PGxpbmUgeDE9IjYiIHgyPSIxOCIgeTE9IjYiIHkyPSIxOCIvPjwvc3ZnPg==);
}