img.pins_image.ihotspot_hastooltop {
  width: auto !important;
}

#powerTip {
  padding: 20px !important;
  background-color: #6f0d4d !important;
  color: #fff !important;
}

#powerTip.n:before {
  display: none;
}

#powerTip p {
  margin: 0;
}

.ihotspot_tooltop_html:before{
  -webkit-animation:pulsate 3s cubic-bezier(0.2,1,0.2,1) infinite;
  animation:pulsate 3s cubic-bezier(0.2,1,0.2,1) infinite;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  /*content: '';*/
  width: 22px;
  height: 22px;
  margin: -11px auto auto -11px;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  border-radius: 50%;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  background: #6f0d4d;
}

@-webkit-keyframes pulsate{
  from{
    opacity:1;
    transform:scale(1)
  }
  to{
    opacity:0;
    transform:scale(3)
  }
}

@keyframes pulsate{
  from{
    opacity:1;
    transform:scale(1)
  }
  to{
    opacity:0;
    transform:scale(3)
  }
}
