.textInfo{float:left;}
.textInfo .tooltip-content {
  left: -70px;
  bottom: 80px;
  pointer-events: none;
  background-color: #333;
  color: #fff;
  line-height: 1.2em;
  padding: .3em;
  text-align:center;
  background:#fff;	
  margin-bottom:10px;
}
@font-face {
  font-family: 'Calibri';
  src: url('../skinfonts/webfont.eot'); /* IE9 Compat Modes */
  src: url('../skinfonts/Calibri.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../skinfonts/Calibri.woff2') format('woff2'), /* Super Modern Browsers */
       url('../skinfonts/Calibri.woff') format('woff'), /* Pretty Modern Browsers */
       url('../skinfonts/Calibri.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../skinfonts/Calibri.svg#svgFontName') format('svg'); /* Legacy iOS */
}

.tooltip-content p{margin:0; color:#4a4a4a;   font-family: 'Calibri';}

.textInfo:hover {
  z-index: 3;
}


.textInfo .hotspot {
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 30px;
    top:-15px;
    left:-15px;
}

.textInfo .hotspot .out:before {
  speak: none;
  font-size: 48px;
  line-height: 90px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.textInfo .hotspot .out {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 5px solid rgba(126,173,207,.8);
  -webkit-transition: -webkit-transform ease-out 0.1s, border 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, border 0.2s;
  transition: transform ease-out 0.1s, border 0.2s;
}

.textInfo .hotspot .in {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: rgba(255,255,255,.8);
  border-radius: 50%;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
}

.textInfo .hotspot .in-2 {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(126,173,207,.8);
  border-radius: 50%;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
}
.textInfo .hotspot:hover .in-2 {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  left:10px;
}

.textInfo .hotspot .out:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.textInfo .hotspot:hover .out {
  border: 5px solid rgba(126,173,207,1);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  color: #fff;
}

.textInfo .hotspot:hover ~ .tooltip-content p{display:none;}
	

.textInfo .hotspot:hover .in {
  background-color: rgba(255,255,255,1);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.textInfo .hotspot:hover .out:after {
  -webkit-animation: sonarEffect 1.2s ease-out;
  -moz-animation: sonarEffect 1.2s ease-out;
  animation: sonarEffect 1.2s ease-out;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(37,170,225,.8), 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(37,170,225,.8), 0 0 0 10px rgba(255,255,255,0.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(37,170,225,.8), 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(37,170,225,.8), 0 0 0 10px rgba(255,255,255,0.5);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(255,255,255,.8), 0 0 0 10px rgba(255,255,255,0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 10px 10px rgba(255,255,255,.8), 0 0 0 10px rgba(255,255,255,0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
