.m-hotspots-container-4c8a2d5a {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: visible;
}

.m-hotspots-image-4c8a2d5a {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.m-hotspot-item-4c8a2d5a {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.m-hotspot-pin-4c8a2d5a {
    position: relative;
    border: none;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s ease;
    z-index: 12;
}

.m-hotspot-pin-4c8a2d5a:hover {
    transform: scale(1.1);
}

.m-hotspot-pin-4c8a2d5a svg,
.m-hotspot-pin-4c8a2d5a i {
    width: 45%;
    height: 45%;
    font-size: 14px;
}

.m-fallback-dot-4c8a2d5a {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* Pulsating Animation */
.m-hotspot-pulse-4c8a2d5a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.6;
    animation: m-pulsate-4c8a2d5a 2s infinite ease-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes m-pulsate-4c8a2d5a {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Tooltip Styling */
.m-hotspot-tooltip-4c8a2d5a {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 20;
}

.m-hotspot-tooltip-4c8a2d5a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: inherit;
    border-top-color: inherit;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

/* Tooltip Toggle Active */
.m-hotspot-item-4c8a2d5a.m-active-4c8a2d5a .m-hotspot-tooltip-4c8a2d5a {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.m-hotspot-tooltip-title-4c8a2d5a {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600;
}

.m-hotspot-tooltip-desc-4c8a2d5a {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}
