#theElement-0,
#theElement-a,
#theElement-kart,
#theElement-b {
	position: relative;
}

.hotspot-img-page {
	width: 100%;
	position: relative;
}

/*
* Hotspot
*
*/
.HotspotPlugin_Hotspot {
	height: 15px;
	width: 15px;
	position: absolute;
	background: rgba(255, 255, 255, 1);
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
	margin-left: -10px;
	margin-top: -10px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	70% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(26, 188, 156, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(26, 188, 156, 0);
	}
}

/*
* Hotspot content
*
*/
.HotspotPlugin_Hotspot > div {
	background: white;
	width: 200px;
	height: auto;
	margin: -94px -60px;
	border-radius: 4px;
	border-color: black;
	overflow: hidden;
	font-size: 10px;
	display:none; /* Required */
	animation: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.HotspotPlugin_Hotspot:hover {
	animation: none; /* Stop pulse animation when popup is shown */
}
.HotspotPlugin_Hotspot:hover > div {
	display: block; /* Required */
	animation: none;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Title {
	font-weight: 500;
	padding: 4px 10px;
	text-align: center;
	font-size: 13px;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message {
	margin-top: 2px;
	padding: 4px 10px;
	height: auto;
	overflow-y: auto;
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.HotspotPlugin_Hotspot_Hidden {
	display: none!important;
	visibility: hidden!important;
}

/*
* Hotspots immediately after creation - admin-mode
*
*/
.HotspotPlugin_Hotspot_Unsaved {
	background: #4E6FF3;
}

/*
* Overlay used in the admin-mode
*
*/
span.HotspotPlugin_Overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	top: 0px;
	left: 0px;
	cursor: pointer;
}
span.HotspotPlugin_Overlay > p {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.4);
	margin-top: 0px;
	padding: 20px;
	text-align: center;
}

/*
* Action buttons - `admin` mode
*
*/
button.HotspotPlugin_Save,
button.HotspotPlugin_Remove,
button.HotspotPlugin_Send {
	position: absolute;
	bottom: -35px;
	color: #fff;
	display: inline-block;
	padding: 4px 6px;
	font-size: 14px;
	text-align: center;
	border-radius: 4px;
}

button.HotspotPlugin_Save {
	left: 0px;
	background-color: #5cb85c;
}
button.HotspotPlugin_Remove {
	left: 80px;
	background-color: #d9534f;
}
button.HotspotPlugin_Send {
	left: 180px;
	background-color: #5bc0de;
}

.Hotspot_Message img
{
	max-width: 120px;
}
.Hotspot_Price
{
	font-size: 13px;
	font-weight: 500;
	color: var(--grey1);
}
.Hotspot_Link a
{
	font-size: 12px;
	font-weight: 500;
	color: var(--accent);
	padding: 5px;
	display: block;
}