.divMapGoogleContent {
    font-family: Arial, sans-serif;
    font-size: 14px;
    max-width: 250px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.divMapGoogleContent.show {
    opacity: 1;
    transform: scale(1);
}

.pMapHeading {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding-bottom: 5px;
    color: #333;
}

.pMapAdress {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* Анимация маркера */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.animated-marker {
    animation: bounce 0.5s infinite alternate ease-in-out;
}

    