.image-hotspoter {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-hotspoter img {
    width: 100%;
    display: block;
}

/* Pin */
.img-hotspot-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 13px;
    height: 15px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 rgba(225, 29, 72, .35);
}

.img-hotspot-pin::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: img-hotspot-pulse 1.8s ease-out infinite;
}

@keyframes img-hotspot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Panel (tooltip style by default) */
.img-hotspot-panel {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    min-width: 180px;
    max-width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    z-index: 10;

    ul.products>.product {
        margin-bottom: 0;
    }

    ul.products .product .qodef-pl-text-wrapper {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.img-hotspot-panel[hidden] {
    display: none !important;
}

.img-hotspot-close {
    position: absolute;
    top: 6px;
    right: 6px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

/* On mobile force panels below image */
@media(max-width:640px) {
    .img-hotspot-panel {
        max-width: 100% !important;
        margin-top: 10px;
        left: 50% !important;
        top: 50% !important;
        max-width: 250px !important;
        width: 100%;
        transform: translate(-50%, -50%);
    }
}

ul.products .product .qodef-pl-inner .qodef-pl-image img {
    width: 100% !important;
    max-width: 100% !important;

}

.img-hotspot-image img {
    /* height: 100vh; */
}

@media(max-width:640px) {
    .img-hotspot-image img {
        max-height: 550px;
        height: auto;
    }
}