.emts-hotspot-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hotspot-image {
    width: 100%;
    height: auto;
    display: block;
    line-height: 1;
}

.hotspot-marker {
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.hotspot-dot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
}

.hotspot-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 5px;
    display: none;
    width: 150px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* Show on hover globally */
.emts-hotspot-container.trigger-hover .hotspot-marker:hover .hotspot-content {
    display: block;
}

/* Show on click globally */
.emts-hotspot-container.trigger-click .hotspot-marker.active .hotspot-content {
    display: block;
}

.hotspot-icon {
    display: flex;
}