.dzm-hotspot {
    position: absolute !important;
    cursor: pointer;
    border: none !important;
}
.dzm-hotspot.area {
    cursor: pointer;
    border: none !important;
    position: relative;
    transition: none !important;
}

/* Hotspot Opacity */
.dzm-hotspot.opacity-solid {
    opacity: 1 !important;
}

.dzm-hotspot.opacity-semi {
    opacity: 0.7 !important;
}

.dzm-hotspot.opacity-transparent {
    opacity: 0.4 !important;
}

.dzm-hotspot::before {
    content: '';
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    animation: sonar 2s ease-out infinite;
}

.dzm-hotspot::after {
    content: '+';
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

/* Hotspot Sizes */
.dzm-hotspot.size-xs::before {
    width: 20px;
    height: 20px;
}

.dzm-hotspot.size-md::before {
    width: 30px;
    height: 30px;
}

.dzm-hotspot.size-xl::before {
    width: 40px;
    height: 40px;
}

.dzm-hotspot.size-xs::after {
    width: 16px;
    height: 16px;
    font-size: 12px;
}

.dzm-hotspot.size-md::after {
    width: 24px;
    height: 24px;
    font-size: 16px;
}

.dzm-hotspot.size-xl::after {
    width: 32px;
    height: 32px;
    font-size: 24px;
}

@keyframes sonar {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Popover Styling */
.popover:has(.dzm-popover-flag) {
    overflow: hidden !important;
    border: none !important;
}

.popover:has(.dzm-popover-flag) .popover-header {
    background-color: #ffffff !important;
    border-bottom: none !important;
    padding: 1rem 0.5rem 0 1rem;
    margin: 0;


}

.popover:has(.dzm-popover-flag) .popover-body {
    padding: 0 1rem 1rem 1rem;

    .suggested-price {
        font-size:0.65rem;
    }

    .price.h4 {
        font-size:1rem;
    }

}