#bonlookbook .bonlookbook_item-img {
    position: relative;
}

#bonlookbook .bonlookbook_point {
    position: absolute;
    width: 30px;
    height: 30px;
}

#bonlookbook .bonlookbook_item-pointer {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #d6d6d6;
    animation: 2.5s pulse ease-in-out infinite;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
}

#bonlookbook .bonlookbook_point-product {
    position: absolute;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 10;
    width: max-content;
    text-decoration: none;
    display: flex;
}

#bonlookbook .bonlookbook_item-pointer:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

#bonlookbook .bonlookbook_item-pointer:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@media screen and (any-hover: hover) {

    #bonlookbook .bonlookbook_point:hover .bonlookbook_point-product {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media screen and (max-width: 959px) {
    #bonlookbook .bonlookbook_point.active .bonlookbook_point-product {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
/*
@media (min-width: 960px) {
    .bonlookbook_wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 20px;
    }
}
*/

.bonlookbook_item-img {
    margin-bottom: 20px;
}

.bonlookbook_item-img .img-responsive {
    width: 100%;
    height: auto;
}

.bonlookboon_point-product-info {
    padding: 6px 8px;
    background: #fff;
}

.bonlookboon_point-product-info .price p {
    margin: 0;
}

#bonlookbook .bonlookbook_point-product.top-left {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

#bonlookbook .bonlookbook_point-product.top-right {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

#bonlookbook .bonlookbook_point-product.bottom-left {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

#bonlookbook .bonlookbook_point-product.bottom-right {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.price .before-discount {
    color: #bababa;
    text-decoration: line-through;
}

.price .after-discount {
    color: #AB2222;
}

.bonlookbook_point-product:hover .h6 {
    text-decoration: underline;
}