.floatingButton {
    position: absolute;
    display:block;
    z-index: 1000;
    width:45px;
    height:45px;
    font-size: 8px;
    border-radius: 50%;
    background-color:#EA001D;
    color: white;
    border: 5px solid #FFD200;
    font-size: 12px;                        
    align-items: center;
    justify-content: center;            
    cursor: pointer;
    outline: none;
    box-shadow: 0 0 0 3px #EA001D;
    transition: box-shadow 0.3s ease;
    font-weight: 700;
}
#vmapM {
    width: 100vw;  
    height: 80vh; 
    margin-top:-12vh;
    margin-left:-5vw;            
    position: relative;
    
}        
#vmapD {
    position: relative; 
}
.tooltip-container:hover .tooltip {
    visibility: visible;
    opacity: 1
}

.tooltip-container-map {
    position: absolute;
    display: inline-block
}
.tooltip-map {
    visibility: visible;
    width: 250px;
    background-color: #fff;
    color: #000;
    border: 1px solid #b47de0;
    text-align: center;
    border-radius: 18px;
    padding: 5px;
    position: absolute;
    margin-left: 15px;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%) translateY(-10px);
    opacity: 1;
    transition: opacity .3s
}

.tooltip-map:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #fff transparent transparent
}

.tooltip-container-map:hover .tooltip {
    visibility: visible;
    opacity: 1
}
