/*
 * ---------------------------
 * --------- General ---------
 * ---------------------------
 */
.product-gallery {
	position: relative;
	width: 100%;
	max-width: 360px;
}
.product-gallery .promo-label {
	top: 10px;
	left: 10px;
}
.product-gallery-main-image-wrapper {
	position: relative;
}
.product-gallery .owl-carousel .owl-dots {
	text-align: center;
}
.product-gallery .owl-carousel .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border: 1px solid #818181;
	border-radius: 50%;
	margin: 0 7px;
}
.product-gallery .owl-carousel .owl-dots .owl-dot.active {
	background: #1C1D1C;
	border: 1px solid #1C1D1C;
}

.product-gallery-main-image-fancybox-link {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.product-gallery-main-image-zoom {
	position: absolute;
	overflow: hidden;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 10px -5px #000;
	-moz-box-shadow: 0 0 10px -5px #000;
	box-shadow: 0 0 10px -5px #000;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	z-index: 1;
}
.product-gallery-thumbnails {
	font-size: 0;
}
.product-gallery-thumbnail {
	width: 15px;
	height: 15px;
	cursor: pointer;
	opacity: 0.5;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all 0.16s ease-in-out;
	-moz-transition: all 0.16s ease-in-out;
	-o-transition: all 0.16s ease-in-out;
	transition: all 0.16s ease-in-out;
}
.product-gallery-thumbnail:hover,
.product-gallery-thumbnail.is-active {
	opacity: 1;
	background-color: #c4915a;
	border-color: transparent;
}