.dwe_woo_products_hotspot{
	overflow: hidden;
}
.dwe_products_hotspot_wrapper{
	position: relative;
}
.dwe_products_image_wrapper img{
	display: block;
	width: 100%;
}
/* Item. */
.dwe_woo_products_hotspot_item{
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	z-index: 9;
}
.dwe_woo_products_hotspot_item .dwe_product_marker{
	cursor: pointer;
	overflow: hidden;
}
.dwe_woo_products_hotspot .pulsating .dwe_product_marker{
	position: relative;
}
.dwe_woo_products_hotspot_item .dwe_marker_wrapper{
	display: inherit;
    padding: 10px;
}
.dwe_product_marker .dwe_marker_wrapper span,
.dwe_product_marker .dwe_marker_wrapper.dwe_marker_image img{
	display: block;
}

/* Animation. */
.dwe_woo_products_hotspot .pulsating .dwe_woo_products_hotspot_item:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: inherit;
	border-radius: inherit;
	opacity: 1;
	transform: scale(1);
	animation: dwe-pulse-aninmation 1.5s ease infinite;
}
@keyframes dwe-pulse-aninmation {
	0% { transform: scale(1); opacity: 1; }
	100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip. */
.dwe_products_hotspot_tooltip_wrapper{
	display: none;
}
.dwe_pht_image_wrapper img{
	display: block;
	width: 100%;
	margin-bottom: 10px;
	object-fit: cover;
}
.dwe_pht_content_wrapper .dwe_pht_price + .dwe_pht_description{
	margin-top: 7px;
}
.dwe_pht_content_wrapper .dwe_pht_star_rating .star-rating{
	float: none;
	display: inline-block;
	margin-bottom: 9px;
}

/* Tooltip box. */
.tippy-box:before {
	position: absolute;
}
.tippy-box[data-placement="top"]:before,
.tippy-box[data-placement="bottom"]:before{
	left: 0;
	width: 100%;
	height: 15px;
	background: inherit;
}
.tippy-box[data-placement="top"]:before{
	bottom: -14px;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 15px),
		calc(50% + 15px) calc(100% - 15px),
		50% 100%,
		calc(50% - 15px) calc(100% - 15px),
		0 calc(100% - 15px)
	);
}
.tippy-box[data-placement="bottom"]:before{
	top: -14px;
	clip-path: polygon(
		100% 15px,
		calc(50% + 15px) 15px,
		50% 0,
		calc(50% - 15px) 15px,
		0 15px,
		0 100%,
		100% 100%
	);
}
.tippy-box[data-placement="left"]:before,
.tippy-box[data-placement="right"]:before{
	top: 0;
	width: 15px;
	height: 100%;
	background: inherit;
	box-sizing: border-box;
}
.tippy-box[data-placement="left"]:before{
	right: -14px;
	clip-path: polygon(
		0 0,
		calc(100% - 15px) 0,
		calc(100% - 15px) calc(50% - 15px),
		100% 50%,
		calc(100% - 15px) calc(50% + 15px),
		calc(100% - 15px) 100%,
		0 100%
	);
}
.tippy-box[data-placement="right"]:before{
	left: -14px;
	clip-path: polygon(
		100% 0,
		15px 0,
		15px calc(50% - 15px),
		0 50%,
		15px calc(50% + 15px),
		15px 100%,
		100% 100%
	);
}
