/*
* Copyright 2016 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.gallery {
    display: none;
}
.gallery.sevenspikes-cloudzoom-gallery {
    display: block;
}
.gallery .picture-wrapper {
    position: relative;
}
.gallery .picture-wrapper > img { /* Transitional image (on thumbnail click) */
	top: 1px !important;
	left: 1px !important;
    right: 1px; margin: auto;
}

/* Zoom Lens, Zoom Window, Zoom Caption */

.cloudzoom-blank {
	top: 1px !important;
	left: 1px !important;
    right: 1px; margin: auto;
	background: none !important;
}
.cloudzoom-lens {
	z-index: 1;
    opacity: 0.7;
    cursor: crosshair;
}
.cloudzoom-lens:before {
	content: "";
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
	z-index: 1;
	background-color: #fff;	
}

.cloudzoom-zoom {
	top: 0 !important;
    left: calc(100% + 30px) !important;
	z-index: 9999; /*adjust or leave it big*/
	background-color: #fff;
}
.cloudzoom-zoom-inside {
	top: 1px !important;
    left: 1px !important;
	right: 1px;
	z-index: 1;
	height: calc(100% - 2px) !important; /*border*/
	margin: auto;
    cursor: crosshair;
}
.cloudzoom-zoom-inside img + div { /*title-wrapper*/
	top: 0 !important;
}
.cloudzoom-caption {
    display: none;
	padding: 15px 20px;
	font-size: 13px;
}

/* Loading Images */

.cloudzoom-ajax-loader {
	position: absolute;
	top: 0 !important;
	left: 0 !important;
	z-index: 2;
    width: 100%;
    height: 100%;
	background: rgba(255,255,255,0.9);
}
.cloudzoom-ajax-loader:before {
	content: "";
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
    height: 50px;
	width: 50px;
	margin: auto;
    border-radius: 100%;
    border: 2px solid #e43d51;
    animation: loader 1s 0s infinite cubic-bezier(.21,.53,.56,.8);
}