/* Animation */

@font-face
{
font-family: Droid;
src: url('../fonts/DroidKufi-Regular.ttf');
	}
	
	
	
@-webkit-keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.8;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}
@keyframes 
pulsate {  0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 opacity: 0.8;
}
 45% {
 -webkit-transform: scale(1.75);
 transform: scale(1.75);
 opacity: 0;
}
}

body { margin: 0; }

/* Hotspot */

#hotspotImg {
  
  background-size: cover;
  background-position: center center;
  position: relative;

}

#hotspotImg .img-responsive { max-width: 100%; }

#hotspotImg .hot-spot {
  position: absolute;
  width: 70px;
  height: 70px;
  font-size:12px;
  top: 5px;
  left: 5px;
  text-align: center;
background:url('../images/leaf-green.png');
  color: #e29e55;
  border-radius: 100%;
  line-height:70px;
  cursor: pointer;
  transition: all .3s ease;
   font-family:Droid,Droid Arabic Kufi,sans-serif;
}


#hotspotImg .hot-spot .circle {
  display: block;
  position: absolute;
  top: 45%;
  left: 45%;
  width: 2em;
  height: 2em;
  margin: -1em auto auto -1em;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  border: 1px solid #E5008A;
  opacity: 0;
  -webkit-animation: pulsate 3s ease-out infinite;
  animation: pulsate 3s ease-out infinite;
}

#hotspotImg .hot-spot .tooltip {
  background-color: rgba(226, 158, 85, 0.9);
  color: #fff;
  display: none;
  font-size: 14px;
  opacity: 1.0;
  left: 0px;
  position: absolute;
  text-align: left;
  top: 30px;
  width: 250px;
  z-index: 999;
  
}
.tooltip{
	margin-left: -15px !important;;
	
}
#hotspotImg .hot-spot .tooltip .img-row {

  text-align: center;  
}

#hotspotImg .hot-spot .tooltip .text-row { padding: 15px; }

#hotspotImg .hot-spot .tooltip h4 {

  font-size: 14px;
  text-align:right;
  font-family:Droid,Droid Arabic Kufi,sans-serif;
}

#hotspotImg .hot-spot .tooltip p {
  font-size: 12px;
  line-height: 14px;

  color:#fff;
    font-family:Droid,Droid Arabic Kufi,sans-serif;
	text-align:right;
}

#hotspotImg .hot-spot .tooltip p:last-child { margin-bottom: 0; }
