/**
 * EasyZoom core styles
 */
.easyzoom-container {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

/* THUMBS */
.thumbnails {
	width: 60px;
	float: left;
	overflow: hidden;
	margin-right: 10px;
}

.thumbnails li {
	display: inline-block;	
	width: 100%;
	margin: 0;
	margin-bottom: 3px;
	border: 1px solid #fff;
	-moz-transition: all linear 0.2s;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s; 	
    opacity: 0.5;
}
.thumbnails li:hover {
	opacity: 1;
}
.thumbnails li.active {
	border: 1px solid #ef5f78;
	opacity: 1;
}

.thumbnails img {
	display: block;
	min-width: 100%;
	max-width: 100%;
	padding: 5px;
}

/* ZOOM */ 
.easyzoom {
	position: relative;
	float: right;
	width: calc(100% - 70px);  
	/* 'Shrink-wrap' the element */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.easyzoom img {
	vertical-align: bottom;
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 150;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 100;
	overflow: hidden;
	background: #FFF;
}

/**
 * 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;
}