.map-advanced-card {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 440px;
    max-width: 440px;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease
}
.map-advanced-card.show {
    opacity: 1;

}

@media (max-width: 767px) {
    .map-advanced-card {
        width: 250px;
        max-width: 250px;
    }
}
#post-card:focus{
    border: 0;
    outline: none;
}