.image-points-container {
    position:relative;
}

.image-points-container img {
    width:100%;
}

.image-points-container .point {
    height:28px;
    width:28px;
    border-radius:50%;
    background: #257226;
    border: 4px solid #ffffff;
    animation:pulse 2s infinite;
    cursor:pointer;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow:0 0 0 0 rgba(37,114,38,0.7); }
  70% { transform: scale(1.1); box-shadow:0 0 0 10px rgba(37,114,38,0); }
  100% { transform: scale(1); box-shadow:0 0 0 0 rgba(37,114,38,0); }
}

.info-box {
    border: 1px solid #4CAF50;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: absolute;
    z-index: 10;
}

.info-box h2 {
    font-size: 20px;
    font-weight: bold;
}

.info-box p {
    font-size: 16px;
    margin-top: 5px;
}

.info-box .close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}