.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: table;
  width: 100%;
  height: 100%;
}
.h5p-ivhotspot > a {
  text-decoration: none;
}
.h5p-ivhotspot > a > p {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.h5p-ivhotspot > a:focus {
  outline: 2px solid #179fff;
  outline-offset: 8px;
}

.h5p-ivhotspot.circular,
.h5p-ivhotspot.circular > a,
.h5p-ivhotspot.circular .blinking-hotspot {
  border-radius: 50%;
}
.h5p-ivhotspot.rounded-rectangle,
.h5p-ivhotspot.rounded-rectangle > a,
.h5p-ivhotspot.rounded-rectangle .blinking-hotspot {
  border-radius: 1em;
}
.h5p-ivhotspot-invisible {
  color: transparent;
}
.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;
  }
}
