/*
* Copyright 2016 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.gallery {
    display: none;
}
.sevenspikes-cloudzoom-gallery {
    display: block;
	position: relative;
}
.gallery .picture-wrapper {
    position: relative;
}
.gallery .picture-wrapper > img { /* Transitional image (on thumbnail click) */
	top: 0;
    right: 0;
	left: 0;
    margin: auto;
}

/* Zoom Lens, Zoom Window, Zoom Caption */

.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 per theme or leave it high*/
}
.cloudzoom-zoom-inside {
	top: 0 !important;
	right: 0;
    left: 0 !important;
	/*these coordinates center the zoomed image horizontally, the main image should be always centered too*/
	/*coordinates may be different than 0 if there is a border around the main picture*/
	z-index: 1;
	height: 100% !important;
	margin: auto;
    cursor: crosshair;
}
.cloudzoom-zoom-inside img + div { /*title-wrapper*/
	top: auto !important;
	bottom: 0 !important;
}
.cloudzoom-caption {
    display: none;
	background-color: #aaa;
	padding: 15px 20px;
    color: #fff;
	opacity: 0.9;
}

/* Loading Images */

.cloudzoom-blank {
	top: 0;
    right: 0;
	left: 0;
	/*these coordinates center the overlay horizontally, the main image should be always centered too*/
	/*coordinates may be different than 0 if there is a border around the main picture*/
    margin: auto;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIAQMAAAD+wSzIAAAAA3NCSVQICAjb4U/gAAAABlBMVEUAAAD///+l2Z/dAAAAAnRSTlP/AOW3MEoAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDYvMzAvMTLNuPjnAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M1cbXjNgAAAAxJREFUCJlj+M+AAgE/0Af5DM23uwAAAABJRU5ErkJggg==');
}
.cloudzoom-ajax-loader {
	position: absolute;
	top: 0 !important;
	left: 0 !important;
	bottom: 0; right: 0;
	z-index: 2;
	background: rgba(255,255,255,0.9);
}
.cloudzoom-ajax-loader:before {
	content: "";
	position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
	width: 60px;
	height: 60px;
	margin: auto;
	border: 1px solid #f61853;
	border-top-color: transparent !important;
	border-radius: 50%;
	-webkit-animation: spin 0.5s linear infinite;
	animation: spin 1s linear infinite;
}
	@-webkit-keyframes spin {
	to { transform: rotate(360deg); }
}
	@keyframes spin {
	to { transform: rotate(360deg); }
}