html, body{
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: sans-serif;
    color:black;
}
.container_vr{
    width:1000px;
    height:500px;
    background-color: black;
    position: relative;
    padding: 0;
    margin:200px 150px;
}
.tooltip{
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    opacity: 0;
    transform: translate3d(-50%,-100%,0);
    transition: opacity .3s, transform .3s;
}
.tooltip.is-active{
    transform: translate3d(-50%,calc(-100% - 40px),0);
    opacity: 1;
}
.infoTooltip{
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    opacity: 0;
    min-width:300px;
    min-height:200px;
    max-width:350px;
    transform: translate3d(-50%,-100%,0);
    transition: opacity .3s, transform .3s;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.infoTooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}
.infoTooltip.is-active{
    transform: translate3d(-50%,calc(-100% - 40px),0);
    opacity: 1;
}
.tooltipContent{
    display:none;
}