	.image-zoom-wrapper {
		position: relative;
		text-align: left;		
		height: 700px;
		width: 1120px !important;
		overflow: hidden;		
		background: #eee;
		-moz-user-select: none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		user-select: none;
		margin: auto;
	}

	.image-zoom-wrapper.js-active {
		cursor: move;
		background-image: none;
	}

	.image-zoom-wrapper .image-container{
		visibility: hidden;
		position: relative;
		max-width: none;
		margin-top: 0;
	}

	.image-zoom-wrapper .overview-pane {
		position: absolute;
		right: 0;
		top: 0;
		opacity: 0.95;		
		width: 30%;
		height: 30%;		
		overflow:hidden;
		background-size: contain;
		background-repeat: no-repeat;
		background-position-x: right;
		background-position-y: top;
		-ms-interpolation-mode: bicubic; 
	}

	.image-zoom-wrapper .overview-pane .overview-pane-highlight {		
		position: absolute;
		background-color: rgba(238,51,51,0.5);		
	}

	.image-zoom-wrapper div {
		padding: 0;
	}

	.image-zoom-wrapper div.zoom-control {
		width: 26px;
		height: 26px;
	}

	.image-zoom-wrapper div.zoom-in,
	.image-zoom-wrapper div.zoom-out {		
		background: #1a79b5;
		color: white;
		font-size: 14px;
		font-weight: 100;
		line-height: 19px;
		padding: 4px 7px;
		display: inline-block;
		cursor: pointer;
		border: 1px solid #fff;
		position: absolute;
		left: 10px;
		top: 10px;
	}

	.image-zoom-wrapper div.zoom-in::before,
	.image-zoom-wrapper div.zoom-out::before{
	    font: normal normal normal 14px/1 FontAwesome;
	    font-size: inherit;
	    text-rendering: auto;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	    transform: translate(0,0);
	    display: inline-block;
	    content: "+";
	}

	.image-zoom-wrapper div.zoom-out::before{
		content: "-";
		line-height: 17px;
		font-size: 21px;
	}

	.image-zoom-wrapper div.zoom-out {		
		top: 46px;
	}

	@media only screen and (max-width: 820px) {
		.image-zoom-wrapper {
			height: 75vh;
		}
	}

	@media only screen and (max-height: 420px) {
		.image-zoom-wrapper {
			height: 55vh;
		}
	}