/* Animation */
@-webkit-keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.9;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}
@keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.9;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}
/*
* Hotspot
* 
*/
.HotspotPlugin_Hotspot {
  position: absolute; z-index: 20;
  width: 25px;
  height: 25px;
  top: 5px;
  left: 5px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease;
}
.HotspotPlugin_Hotspot::before  {
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	left: 55%;
	width: 1.75rem;
	height: 1.75rem;
	margin: -1em auto auto -1em;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	border-radius: 50%;
	border: 3px solid #fff;
	opacity: 0;
	-webkit-animation: pulsate 1.5s ease-out infinite;
	animation: pulsate 1.5s ease-out infinite;	
}

/*
* Hotspot content
* 
*/
.HotspotPlugin_Hotspot > div {
	background: rgba(255, 255, 255, 1);
	width: 200px;
	height: 150px;
	border-radius: 4px;
	border: solid 1px #c2d4e5;
	box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
	overflow: hidden;
	display:none; /* Required */
}
/*.HotspotPlugin_Hotspot > div { margin: -150px -90px; }*/

.HotspotPlugin_Hotspot > div.box-right-bottom { margin: 20px 20px; }
.HotspotPlugin_Hotspot > div.box-left-bottom { margin: 20px -190px; }

.HotspotPlugin_Hotspot > div.box-right-top { margin: -160px 0px; }
.HotspotPlugin_Hotspot > div.box-left-top { margin: -160px -190px; }

.HotspotPlugin_Hotspot > div.box-top { margin: -150px -90px; }
.HotspotPlugin_Hotspot > div.box-left { margin: -50px -200px; }
.HotspotPlugin_Hotspot > div.box-right { margin: -50px 30px; }
.HotspotPlugin_Hotspot > div.box-bottom { margin: 25px -90px; }

.HotspotPlugin_Hotspot:hover > div {
	display: block; /* Required */
}
.HotspotPlugin_Hotspot > div > .Hotspot_Title {
	/*background: rgba(255, 255, 255, 0.4);*/
	/*height: 50px;*/
	color: #1b2e3f; font-size: 1rem;
	font-weight: bold;
	padding: 4px 10px;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message {
	/*background: rgba(255, 255, 255, 0.4);*/
	margin-top: 2px;
	padding: 4px 10px;
	height: 100px;
	overflow-y: auto;
	color: #1b2e3f; font-size: .875rem;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message a {
	font-size: 0.875rem; margin-top: .5rem;
	line-height:1; letter-spacing: 0.1rem;
	display:inline-block;
	padding: .35rem .5rem;
	cursor:pointer;
	-webkit-user-select:none;
	-ms-user-select:none;
	user-select:none;
	transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	text-align:center;
	vertical-align:middle;
	border:1px solid transparent;
	border-radius: 0rem;
	text-transform: uppercase;
	position: relative;
	color:#fff; text-decoration: none;
	background-color:#1b2e3f;
	padding-right: 30px;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message a::before {
	content: '';
	background: url(/images/icon/arrow-right-white.svg) 50% 50% no-repeat;
	background-color:#1b2e3f;
	background-size: auto 50%; 
	width: 25px; height: 25px;
	margin-left: 1rem;
	border-radius: 50%;
	display: block; 
	position: absolute;
	right: 0; top: 0;
	border-radius: 0; 
}
.HotspotPlugin_Hotspot > div > .Hotspot_Message a:hover {
	background-color:#5bc0de;
}


.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: #1b2e3f;
	/*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;
}