.floorplan-block {
    position: relative;
    z-index: 2;
}

.product-store__content {
    text-align: center;
}

.product-store--inner .product-store__content {
    padding-bottom: 35px;
}

.product-store__content .btn-group {
    justify-content: center;
}

.product-store__image {
    width: calc(100% + 44px);
    margin-left: -22px;
    margin-top: 20px;
}

.product-store--inner .product-store__image {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
}

.product-store__image__col {
    position: relative;
    max-width: 375px;
    margin: 0 auto;
}

.store-point {
    position: absolute;
    left: 106px;
    top: 19px;
}

.store-point.active {
    z-index: 2;
}

.store-point__mark {
    position: relative;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: linear-gradient(90deg, #EC222E 0%, #AD0D15 100%);
    cursor: pointer;
    transition: all ease 0.3s;
}

.active .store-point__mark {
    width: 45px;
    height: 45px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.25;
    }
}

.store-point__mark::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(90deg, #EC222E 0%, #AD0D15 100%);
    opacity: 0.25;
    transition: all ease 0.3s;
    animation: pulse 2s ease-in-out infinite;
}

.active .store-point__mark::before {
    left: -6px;
    top: -6px;
    width: 58px;
    height: 58px;
}

.store-point__mark::after {
    content: "\e900";
    font-family: 'mws-icons';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    font-size: 11px;
    color: var(--white);
    line-height: 1em;
    transition: all ease 0.3s;
    font-weight: normal;
}

.active .store-point__mark::after {
    content: "";
    width: 27px;
    height: 3px;
    border-radius: 3px;
    background: var(--white);
    transform: translate(-50%, -50%) rotate(0deg);
}

.store-point__info {
    position: absolute;
    left: -30px;
    bottom: calc(100% + 30px);
    z-index: 1;
    padding: 18px 10px;
    text-align: center;
    width: 263px;
    border-radius: 12px;
    background: linear-gradient(90deg, #0071CE 0%, #004883 100%);
    display: none;
}

.active .store-point__info {
    display: block;
}

.store-point__info h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--white);
    margin: 0 0 2px;
    text-transform: capitalize;
}

.store-point__info .btn,
.store-point__info .btn-link::after {
    -webkit-text-fill-color: var(--white);
}

.store-point__info::before {
    content: "";
    position: absolute;
    left: var(--info-arrow-left, 30px);
    top: 100%;
    width: 60px;
    height: 46px;
    clip-path: polygon(15% 0, 51% 63%, 85% 0);
    background: linear-gradient(90deg, #0071CE 0%, #004883 100%);
}

@media (min-width: 768px) {
    .product-store__content {
        padding-bottom: 20px;
    }

    .product-store__image {
        width: calc(100% + 104px);
        margin-left: -52px;
        margin-top: 0;
    }

    .product-store__image__col {
        max-width: 772px;
    }

    .product-store--inner .product-store__image__col {
        max-width: 660px;
    }

    .product-store__content {
        padding-bottom: 50px;
    }
}


@media (min-width: 1200px) {
    .product-store__content {
        padding-bottom: 20px;
    }

    .product-store__image {
        width: calc(100% + 20px);
        margin-left: -10px;
    }

    .product-store__image__col {
        max-width: 1253px;
    }

    .store-point__mark {
        width: 40px;
        height: 40px;
    }

    .active .store-point__mark {
        width: 59px;
        height: 59px;
    }

    .store-point__mark::before {
        left: -5px;
        top: -5px;
        width: 50px;
        height: 50px;
    }

    .active .store-point__mark::before {
        left: -8px;
        top: -8px;
        width: 75px;
        height: 75px;
    }

    .store-point__mark::after {
        font-size: 15px;
    }

    .active .store-point__mark::after {
        width: 35px;
        height: 4px;
    }

    .store-point__info {
        bottom: calc(100% + 26px);
        padding: 18px 10px;
        width: 334px;
    }

    .active .store-point__info {
        display: block;
    }

    .store-point__info h4 {
        font-size: 22px;
        margin: 0 0 7px;
    }

    .store-point__info::before {
        top: calc(100% - 1px);
    }

    .store-point__mark:hover {
        width: 59px;
        height: 59px;
    }

    .store-point__mark:hover::before {
        left: -8px;
        top: -8px;
        width: 75px;
        height: 75px;
    }

    .product-store__wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        
    }

    .product-store__content {
        padding-bottom: 0;
        text-align: left;
        width: 576px;
    }

    .product-store__image{
        width: calc(100% - 576px);
        margin-left: 0px;
        padding-left: 50px;
    }

    .product-store__image__col {
        max-width: 614px;
    }

}
