
#HotspotPlugin_image {
	position: relative;
}

/*
* Hotspot message
* 
*/
.HotspotPlugin_Hotspot > div {
    background-color: #FFF;
    max-width: 400px;
    width: 400px;
	margin: -85px -60px;
	border-radius: 4px;
	overflow: hidden;
	font-size: 10px;
    box-shadow: 0 1px 15px 1px rgba(90, 90, 90, 0.3);
    z-index: 11;
	display:none;
}
.HotspotPlugin_Hotspot:hover > div {
	display: block; /* Required */
}
.HotspotPlugin_Hotspot > div > .Hotspot_Title {
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #CCC;
    text-align: center;
    font-size: 15px;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message {
	padding: 10px;
    font-size: 12px;
    font-weight: 600;
	overflow-y: auto;
}

/*
* Hotspots
* 
*/
.HotspotPlugin_Hotspot {
	height: 30px;
	width: 30px;
	position: absolute;
	background: #1ABC9C;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

/*
* Hotspots immediately after creation - admin-mode
* 
*/
.HotspotPlugin_inc {
	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;
}

/*
* Buttons - admin-mode
* 
*/
button.HotspotPlugin_Done {
	position: absolute;
	right: -120px;
	bottom: 38px;
}
button.HotspotPlugin_Remove {
	position: absolute;
	right: -120px;
	bottom: 2px;
}
button.HotspotPlugin_Server {
	position: absolute;
	right: -120px;
	bottom: 74px;
}
.HotspotPlugin_Hotspot i.fa {
    color: #FFF;
    display: block;
    font-size: 12px;
    position: absolute;
    left: 11px;
    text-align: center;
    color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
#HotspotPlugin_image img {
    max-width: none;
}