/* AnythingZoomer */
.az-wrap, .az-small, .az-large {
	position: relative;
}
.az-wrap-inner {
	display: block;
	margin: 0 auto; /* center small & large content */
}
/* This wraps the large image and hides it */
.az-zoom {
	background: #fff;
	border: #333 1px solid;
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 300px;
	overflow: hidden;
	z-index: 100;
	display: none;
	-moz-box-shadow: inset 0px 0px 4px #ccc;
	-webkit-box-shadow: inset 0px 0px 4px #ccc;
	box-shadow: inset 0px 0px 4px #ccc;
}
/* Class applied to az-mover when large image is windowed */
.az-windowed {
	overflow: hidden;
	position: absolute;
}
/* Class applied to az-mover when large image is fully shown */
.az-expanded {
	height: auto;
	width: auto;
	position: static;
	overflow: visible;
}

/* overlay small area */
.az-overlay {
	background-color: #ccc;
	opacity: 0.01;
	filter: alpha(opacity=01);
	z-index: 10;
}

/* fade out small content when hovering
.az-hovered > * {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
*/

/* edit mode coordinate styling */
.az-coords {
	/*display: none; /* hidden when expanded */
}

.az-zoom .az-coords {
	/*display: none;*/
	position: absolute;
	top: 0;
	right: 0;
	background: #000;
	background: rgba(0,0,0,0.1);
	color: #fff;
}

/* ZOOM CONTAINER */
.zoom {
  display: block;
  margin: 0 auto;
}

.large {
  background: white;
}

/* FOR IMAGE DEMO */
.small img {
  width: 800px;
  height: 400px;
}

.large img {
	max-width: 600%;
  width: 1600px;
  height: 800px;
}

#trim {
  width: 100%;
  padding-left: 25px;
  position: absolute;
}

.zoom-link {
	display: none;
}

@media (max-width: 599px) {
	.az-zoom {
		width: 0;
		height: 0;
	}
	.az-overlay {
		opacity: 0;
		filter: alpha(opacity=0);
	}
	.small img {
		width: 300px;
		height: 300px;
	}

	.large img {
		width: 400px;
		height: 400px;
	}
	#trim {
		display: none;
	}
	.supply-container {
    min-height: 200px;
    position: relative;
	}
	.zoom-link {
		display: contents;
		position: relative;
		z-index: 1000;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
