@media (min-width: 768px) {
    #blockShopTheLookWrapper {
        max-width: 1760px;
        width: calc(100vw - 4rem);
    }
}
.block-shop-the-look__item > img {
    display: block;
}
@media (min-width: 1440px) {
    .block-shop-the-look__item {
        width: calc(25% - 15px);
    }
}
@media (max-width: 420px) {
    .block-shop-the-look__item {
        width: calc(100% - 10px);
    }
}
/**/
.block-shop-the-look__point {
    width: 30px;
    height: 30px;
    margin: -15px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 5;
    color: var(--shop-the-look-black);
    animation: shop-the-look-pulse 2s ease-out infinite;
}

.block-shop-the-look__point:hover {
    background: #fff;
}

.block-shop-the-look__point::before {
    content: "" !important;
    width: 75%;
    height: 75%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='M11.75 5v13.5M5 11.75h13.5'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.2s;
}
.block-shop-the-look__point:hover::before {
    border-color: #ddd;
}
@keyframes shop-the-look-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.64);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.block-shop-the-look__hover-box-inner:before {
    display: none;
}
.block-shop-the-look__hover-box,
.block-shop-the-look__hover-box-inner {
    width: 220px;
}
.block-shop-the-look__hover-box {
    left: -110px;
    right: -110px;
}
.block-shop-the-look__hover-box-inner {
    min-height: 75px;
    padding: 7px;
    border-radius: 6px;
}
.block-shop-the-look__hover-box .info {
    width: 100%;
    padding: 0;
}
.block-shop-the-look__hover-box .title {
    font-size: 11.5px;
    text-transform: none;
    line-height: 1.2;
}
.block-shop-the-look__hover-box .price {
    font-size: 13px;
}
.block-shop-the-look__hover-box img {
    width: 75px;
    min-height: 75px;
}
