#legendcontainer {
    border-radius: 5px;
    position: absolute;
    padding-bottom: 15px;
    top:65px;
    left:10px;
    background-color: white;
    /* height:500px; */
    width:200px;
    box-shadow: 5px 2px 4px #888888;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidepanel */
    z-index: 888;
}

#legendtitle {
	font-family: "Helvetica";
	font-size:large;
    color: rgb(70,70,70);
    font-weight: bold;
    padding:10px;
    text-align: center;
}

.legendunit {
	font-family: "Helvetica";
    font-size: medium;
    color: rgb(70,70,70);
    padding:10px;
    text-align: center;
}

.legenditems {
	font-family: "Helvetica";
	font-size: "14";
	color: rgb(70,70,70);
    display: flex;
    flex-direction: column;
    align-items: left;

}

#legenditem {
    display:flex;
    flex-direction: row;
    width:140px;
    justify-content: space-between;
}

.circle{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border:1px solid red;
    background-color: red;
    line-height: 20px;
    text-align: center;
}