/*
 * VN Hotspots Galería
 */

.vn-galeria .fusion-gallery-image {
    position: relative;
}

.vn-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 50;
}

.vn-hotspot__button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.72);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.vn-hotspot__button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.vn-hotspot:hover .vn-hotspot__button,
.vn-hotspot.is-open .vn-hotspot__button {
    transform: scale(1.12);
    background: #111;
}

.vn-hotspot__card {
    position: absolute;
    left: 46px;
    top: 50%;
    width: 210px;
    transform: translateY(-50%);
    background: #fff;
    color: #111;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 100;
}

.vn-hotspot.is-left .vn-hotspot__card {
    left: auto;
    right: 46px;
}

.vn-hotspot:hover .vn-hotspot__card,
.vn-hotspot.is-open .vn-hotspot__card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vn-hotspot__ref {
    font-size: 11px;
    line-height: 1.3;
    color: #777;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.vn-hotspot__name {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 5px;
}

.vn-hotspot__price {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
}

.vn-hotspot__link {
    display: block;
    padding: 10px 12px;
    background: #111;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.vn-hotspot__link:hover {
    background: #333;
    color: #fff !important;
}

@media (max-width: 768px) {
    .vn-hotspot__button {
        width: 38px;
        height: 38px;
    }

    .vn-hotspot__card {
        width: 180px;
    }
}
