.geek-image-annotation {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
}
.geek-image-annotation > img {
	max-width: 100%;
}
.geek-image-annotation > .annotation {
	position: absolute;
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1px;
	cursor: pointer;
}
.geek-image-annotation .tooltip_templates {
	display: none !important;
}

.geek-image-annotation > .annotation.pulse:before,
.geek-image-annotation > .annotation.pulse:after {
	content: "";
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border: 1px solid #F44236;
	border-radius: 50%;
}
.geek-image-annotation > .annotation.active.pulse:before,
.geek-image-annotation > .annotation.active.pulse:after {
	border: 3px solid #F44236;
}
.geek-image-annotation > .annotation.pulse:before {
	animation: blip1 2s infinite cubic-bezier(0, 0.6, 1, 0.6);
}
.geek-image-annotation > .annotation.pulse:after {
	animation: blip2 2s infinite linear;
}
@keyframes blip1 {
	to {
		transform: scale(3);
		opacity: 0;
	}
}
@keyframes blip2 {
	to {
		transform: scale(2);
		opacity: 0;
	}
}

/*Modal Box*/
.geek-image-annotation-thumbnail {
	display: inline-block;
	position: relative;
}
.geek-image-annotation-thumbnail:after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 64px;
	height: 64px;
	display: block;
	content: " ";
	background: url("images/mouse-click.png") center center no-repeat;
	opacity: 0.6;
}
.geek-image-annotation-thumbnail:hover:after {
	opacity: 1;
}
.sparkling-modal-container { }

.sparkling-modal-overlay {
	background: rgba(0, 0, 0, 0.3);
}

.sparkling-modal-frame {
	background: #fff;
	border: 0px solid #000;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
	-ms-box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
}

.sparkling-modal-title {
	background: #f5f3ef;
	position: relative;
}

.sparkling-modal-title span {
	font-size: 20px;
	padding: 20px;
	float: left;
	line-height: 20px;
}

.sparkling-modal-close {
	cursor: pointer;
	height: 100%;
	width: 75px;
	position: absolute;
	right: 0px;

	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	-ms-transition: background 0.2s;
	-o-transition: background 0.2s;
	transition: background 0.2s;
}

.sparkling-modal-close:hover { background: #e0ddd6; }

.sparkling-modal-content { padding: 20px; }

.sparkling-modal-close .i-close {
	width: 100%;
	height: 100%;
	position: relative;
	transform: rotate(45deg);
}

.sparkling-modal-close .i-close-h {
	position: relative;
	height: 1px;
	width: 19px;
	background: #777;
	top: 50%;
	left: 50%;
	margin-left: -9px;
}

.sparkling-modal-close .i-close-v {
	position: relative;
	height: 19px;
	width: 1px;
	background: #777;
	top: 50%;
	margin-top: -10px;
	left: 50%;
}