#img-lugar-visitado {
    max-height: 32vh;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: 1px solid #EFEFEF;
}

.selectable {
    cursor: pointer;
    color: var(--first-color);
}

.selected {
    background-color: #007bff;
    color: white;
}

#mapa-lugares-visitados {
    width: 100%;
    height: 94vh;
}


#contextMenuLugaresVisitados {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    display: none;
    padding: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-left: 6px;
    margin-top: -50px;
    font-size: 0.9rem;
}

#input-buscador-lugar-mapa-visitados {
    border-radius: 0.5rem !important;
}

.contextMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contextMenu li {
    padding: 8px 12px;
    cursor: pointer;
}

.contextMenu li:hover {
    background: #f0f0f0;
}

#contenedor-input-search-lugar-visitas {
    position: absolute;
    z-index: 2;
    margin: auto;
    width: 350px;
    margin-top: 1rem;
    margin-left: 1%;
    z-index: 1051;
}

.content-visited-place {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
    /* height: auto; */
    padding: 2px;
    border: 1px solid #CCC;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 28px;
}

.content-visited-place:hover {
    width: fit-content;
}

.content-visited-place:hover .detail {
    display: flex;
}

/* .content-visited-place::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #ffffff;
    content: '';
    height: 0;
    left: 50%;
    position: absolute;
    top: 95%;
    transform: translate(-50%, 0);
    transition: all 0.3s ease-out;
    width: 0;
    z-index: 1;
} */

.content-visited-place .icon {
    color: #FFF;
    font-size: 0.7rem;
    /* border: 2px solid coral; */
    border-radius: 0.4rem;
    padding: 4px;
    position: relative;
    background-color: #dc3545;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    text-align: center;
}

.content-visited-place .detail {
    font-size: 0.8rem;
    font-weight: bold;
    columns: #222;
    display: none;
    margin-left: 0.5rem;
    padding-right: 0.5rem;
}

/* #template-main-content>div.container-fluid {
    padding: 0px;
} */

@media screen and (max-width: 768px) {
    #contenedor-input-search-lugar-visitas {
        width: 98%;
        max-width: 98%;
    }
}

#mapa-lugares-visitados .offcanvas {
    position: absolute;
    height: 98%;
    top: 0;
    bottom: 0;
    margin-top: 0.8%;
    margin-left: 0.8%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #22222211;
    box-shadow: 1px 1px 5px 1px #999;
}

#mapa-lugares-visitados .offcanvas-backdrop {
    position: absolute;
    /* en vez de fixed */
}