

.image-notes .img-note .note-marker {
	background-color: #02324D;
}

.image-notes .img-note .note-marker:after {
	border-color: #02324D;
}

.image-notes .img-note .img-note-content h5 {
	color: #F47920;
}


/*-------- Image Notes --------*/
.image-notes {
    max-width: 100%;
	display: inline-block;
	position: relative;
}

.image-notes .img-note {
	position: absolute;
}

.image-notes .img-note .note-marker {
	display: inline-block;
	cursor: help;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: relative;
	z-index: 20;
	-webkit-animation: note-marker 1s linear infinite;
	-moz-animation: note-marker 1s linear infinite;
	-ms-animation: note-marker 1s linear infinite;
	-o-animation: note-marker 1s linear infinite;
	animation: note-marker 1s linear infinite;
}

@-webkit-keyframes note-marker {
	0% {
		-webkit-transform: scale(1)
	}
	30% {
		-webkit-transform: scale(0.8)
	}
	100% {
		-webkit-transform: scale(1)
	}
}

@-moz-keyframes note-marker {
	0% {
		-moz-transform: scale(1)
	}
	30% {
		-moz-transform: scale(0.8)
	}
	100% {
		-moz-transform: scale(1)
	}
}

@-o-keyframes note-marker {
	0% {
		-o-transform: scale(1);
	}
	30% {
		-o-transform: scale(0.8);
	}
	100% {
		-o-transform: scale(1);
	}
}

@keyframes note-marker {
	0% {
		transform: scale(1);
	}
	30% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}

.image-notes .img-note .note-marker:after {
	position: absolute;
	top: -4px;
	left: -4px;
	width: 18px;
	height: 18px;
	content: "";
	display: block;
	border-radius: 50%;
	border: 2px solid;
}

.image-notes .img-note .img-note-content {
	text-align: center;
	position: absolute;
	bottom: 100%;
	left: 50%;
	width: 240px;
	opacity: 0;
    filter: Alpha(Opacity=0);
	visibility: hidden;
	border-radius: 20px;
	margin-bottom: 20px;
	margin-left: -120px;
	border: 1px solid;
	z-index: 21;
	padding: 12px 12px 14px 12px;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.image-notes .img-note:hover .img-note-content {
	opacity: 1;
    filter: Alpha(Opacity=1);
	visibility: visible;
	margin-bottom: 0;
}

.image-notes .img-note .img-note-content:after {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -3px;
	margin-top: -3px;
	display: block;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.image-notes .img-note .img-note-content h5 {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 600;
}

.image-notes .img-note .img-note-content img{
	background-color: #fff;
}

.image-notes .img-note .img-note-content h1 {
	font-size: 24px;
}

.image-notes .img-note.light-note .img-note-content {
	border-color: rgba(0,0,0,.1);
	background-color: #fff;
}

.image-notes .img-note.light-note .img-note-content:after {
	box-shadow: 1px 1px 0 rgba(0,0,0,.1);
	background-color: #fff;
}

.image-notes .img-note.light-note .img-note-content p {
	color: #777;
}

.image-notes .img-note.dark-note .img-note-content {
	border-color: #fff;
	background-color: rgba(0,0,0,0.7);
}

.image-notes .img-note.dark-note .img-note-content:after {
	box-shadow: 1px 1px 0 rgba(255,255,255,1);
	background-color: rgba(0,0,0,0.7);
}

.image-notes .img-note.dark-note .img-note-content p {
	color: #666;
}
