/* Animation */
@-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 */

div[id*="hotspotImg"] {
    background-size: cover;
    background-position: center center;
    position: relative;
}
div[id^="box"] {
    display: grid;
    place-content: center;
    position: relative;
    left: -50px;
}

span[id*="anchor-dot"] {
    display: block;
    left: 83.9%;
    top: 38.7%;
    position: absolute;
    height: 15px;
    width: 15px;
}
div[id*="hotspotImg"] a[class*="hot-spot"] {
    position: absolute;
    width: 15px;
    height: 15px;
    text-align: center;
    background-color: rgb(16 0 255);
    color: #fff;
    border-radius: 100%;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 999;
}

div[id*="hotspotImg"] a[class*="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 rgb(16 0 255);
    opacity: 0;
    -webkit-animation: pulsate 3s ease-out infinite;
    animation: pulsate 3s ease-out infinite;
}

div[id*="hotspotImg"] a[class*="hot-spot"] .tooltip {
    background-color: rgba(58, 95, 150, 0.7);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: none;
    font-size: 14px;
    opacity: 1.0;
    left: 0px;
    padding: 15px 5px;
    position: absolute;
    text-align: left;
    top: 30px;
    width: 280px;
    z-index: 999;
}