.h5p-ivhotspot {
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.h5p-ivhotspot > a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.h5p-ivhotspot.circular,
.h5p-ivhotspot.circular > a,
.h5p-ivhotspot.circular .blinking-hotspot {
  border-radius: 50%;
}
.blinking-hotspot {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 100%;
  height: 100%;
  border: solid 1px #ffffff;
  -webkit-animation: pulsing 1.5s ease-out;
          animation: pulsing 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0.1;
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.4);
     -moz-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.4);
}
@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 0.1;
  }
  10%{
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.03, 1.03);
    opacity: 0.1;
  }
}
@keyframes pulsing {
  0% {
    transform: scale(1, 1);
    opacity: 0.1;
  }
  10%{
    opacity: 0.7;
  }
  100% {
    transform: scale(1.03, 1.03);
    opacity: 0.1;
  }
}
