/**
 * EasyZoom core styles
 */
.easyzoom {
	position: relative;
	z-index: 0;
	/* 'Shrink-wrap' the element */
	overflow: hidden;
	display:inline-block;
	zoom: 1;
	height: 100%;


}

.easyzoom:hover{
	display: flex;
}

.easyzoom img {
	/* vertical-align: bottom; */
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
	/* width: 100%; */
	/* height: auto; */
	/* max-width: 100%; */
	/* max-height: 100%; */
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFF;
	-webkit-box-shadow: 0 0 10px #888;
	        box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 2;
	overflow: hidden;
	background: #FFF;

}
.easyzoom-flyout img{
	/* bottom:0; */
	right:0;
	margin:auto;
}


/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}

.easyzoom--adjacent .easyzoom-flyout {
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	margin-left: 20px;
}
.thumbnails{
	list-style:none;
	padding:0;
	margin:0;
	margin: 5px 0 0 0;
}
.thumbnails li{
	-webkit-transition: ease .2s;
	transition:ease .2s;
}
html[dir="ltr"] .thumbnails li{
	margin-right:2px;
}
html[dir="rtl"] .thumbnails li{
	margin-left:2px;
}
