html, body {
}
.sitebody {
  margin: 0 auto;
  display: flex;
  justify-content: center;

}
#lmap {
  height:75vh;
  overflow: hidden;
  width:80vw;
  background-color: #ECECFB;
  border: thin solid #333;
  border-left: none;
  top: 20vh;

}
#header{
  width:95vw;
  height:20vh;
  text-align:center;
  position: absolute;
}
#floating-legend {
        position: absolute;
        top:60vh;
        left: 10vw;
        z-index: 5;
        width: 15vw;
        background-color: #fff;
        float:left;
        padding: 5px;
        font-family: 'Roboto','sans-serif';
        line-height: 1;
        padding-left: 10px;
}
ol {
  position: relative;
  display: block;
  margin: 100px;
  height: 4px;
  background: #31708F;
}
ol::before,
ol::after {
  content: "";
  position: absolute;
  top: -8px;
  display: block;
  width: 0;
  height: 0;
  border-radius: 10px;
  border: 10px solid #31708F;
}
ol::before {
  left: -5px;
}
ol::after {
  right: -10px;
  border: 10px solid transparent;
  border-right: 0;
  border-left: 20px solid #31708F;
  border-radius: 3px;
}

/* ---- Timeline elements ---- */
li {
  position: relative;
  display: inline-block;
  float: left;
  width: 80px;
  font: bold 14px arial;
  height: 50px;
}
li .diplome {
  position: absolute;
  top: -47px;
  left: 36%;
  color: #000000;
}
li .point {
  content: "";
  top: 40px;
  left: 43%;
  display: block;
  width: 6px;
  height: 6px;
  border: 4px solid #31708F;
  border-radius: 10px;
  background: #fff;
  position: absolute;
}
li .description {
  display: none;
  background-color: #f4f4f4;
  padding: 10px;
  margin-top: 20px;
  position: relative;
  font-weight: normal;
  z-index: 1;
}
li .buttom {
  background-color: #f4f4f4;
  padding: 2px;
  margin-top: 25px;
  position: relative;
  font-weight: normal;
  z-index: 1;
}
li .a{
    background-color: #f4f4f4;
    padding: 2px;
    margin-top: 25px;
    position: relative;
    font-weight: normal;
    z-index: 1;
    color:black;
    text-decoration:none;
    line-height: 1.5;
}
.description::before {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #f4f4f4;
  position: absolute;
  top: -5px;
  left: 43%;
}

/* ---- Hover effects ---- */
li:hover {
  cursor: pointer;
  color: #48A4D2;
}
li:hover .description {
  display: block;
}
li:hover .point {
  border: 4px solid red!important;
  border-radius: 10px;
}
