
#legende{
    position:absolute;
    width: 200px;
    top: -2000px;
    left: -2000px;
    z-index: 3;
    padding: 10px;

    background-color: rgb(241, 235, 201);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    -webkit-box-shadow: 0px 0px 20px 5px #ccc;
    -moz-box-shadow: 0px 0px 20px 5px #ccc;
    box-shadow: 0px 0px 20px 5px #ccc;
}

#legende>div[class="triangle"] {
    position:absolute;
    top: 15px;
    left: -20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid rgb(241, 235, 201);
}

#legende[class="vsem"]>div:nth-child(2){display: none;}
#legende[class="vpro"]>div:nth-child(3){display: none;}


#legende>div{
    float: left;
    width: 100%;
}
#legende>div>h2{
    float: left;
    width: 100%;
    font-family: 'Alexandria-Medium';
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    color:black;
    margin-bottom: 10px;
}
#legende>div>p{
    float: left;
    width: 100%;
    font-family: 'Alexandria-light';
    text-align: left;
    font-size: 12px;
    line-height: 16px;
    color:black;
    margin-bottom: 10px;
}
#legende>div>a{
    float: left;
    font-family: 'Alexandria-light';
    text-decoration: none;
    font-size: 12px;
    line-height: 16px;
    color:var(--C_BleuVpro);

    transition-property: color;
    transition-duration: 0.6s;
    transition-timing-function:ease-in-out;
    transition-delay: 0s;
}
#legende>div>a:hover{color:coral;}