.image-points-wrap {
    position: relative;
}
.image-points-wrap .point {
    list-style: none;
}
.image-points-wrap .point button {
    border: none;
    border-radius: 50%;
    padding: 0;
    position: absolute;
}
.image-points-wrap .point button::before {
    content: "";
    display: block;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    animation: scaleUpDown 2s ease-in-out infinite;
    background-color: inherit;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the circle inside the container */
}
.image-points-wrap .point button::after {
    content: "";
    display: block;
    width: 180%;
    height: 180%;
    border-radius: 50%;
    animation: scaleDownUp 2s ease-in-out infinite;
    background-color: inherit;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the circle inside the container */
}
@keyframes scaleDownUp {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}
@keyframes scaleUpDown {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}
.image-points-wrap .point button .btn-title {
    position: absolute;
    top: 60%;
    left: 60%;
    color: var(--bs-btn-color);
    background: var(--bs-btn-bg);
    padding: 3px 15px;
    z-index: 1;
    display: none;
    min-width: 130px;
}
.image-points-wrap .point button .btn-title.top {
    top: auto;
    bottom: 60%;
}
.image-points-wrap .point button .btn-title.left {
    left: auto;
    right: 60%;
}
.image-points-wrap .point button:hover .btn-title {
    display: block;
}
.ce-animated-image .textpic-item img {
    max-width: 100%;
    height: auto;
}
.ce-animated-image .tab-content > .frame {
    margin-top: 0;
    padding: var(--frame-spacing);
}