/* Stile per ogni overlay del marker */
.marker-overlay {
    position: relative;
    background-color: white;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}
.marker-overlay .nome{
    font-size: 15px;
}
.marker-overlay .comune{
    font-size: 13px;
}
.marker-overlay img {
    max-width: 50px;
    display: block;
    margin: 5px auto;
}
/* Triangolo in basso che rappresenta la "punta" */
.marker-pointer {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid white;
}


@media screen and (max-width: 999px){
    #customTooltip{
        display: none !important;
    }
}

