/* timeline */
.timeline-wrapper{
    width: 100%;
    background: #333;
    height: 90px;
    padding: 10px;
    padding-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.timeline{
    position:relative;
    width:100%;
    height:100%;
}
.timeline-wrapper .yearrange{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
}
.timeline-sep-wrapper{
    width:100%;
    height:100%;
    position: absolute;
    pointer-events: none;
}
.timeline-seperator{
    position: absolute;
    background-color: white;
    height: 25%;
    width: 1px;
    bottom: 16px;
    transform: translateX(-50%);
}
span.timeline-seperator:first-child{
    /* transform: translateX(100%); */
}
span.timeline-seperator:last-child{
    transform: translateX(-100%);
}
.timeline-seperator.high{
    height: 50%;
    width: 3px;
    font-size:1.2em;
}
.timeline-year{
    color: white;
    font-family: sans-serif;
    font-size: 0.6em;
    font-weight: bold;
    position: absolute;
    left: 100%;
    bottom: 100%;
}
.timeline-seperator:last-child .timeline-year{
    right: 100%;
    left: unset;
}
.timeline-stat-wrapper{
    height: 50%;
    height: calc(100% - 35px);
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
}
.timeline-stat-el{
    position: absolute;
    background: darkred;
    display: block;
    bottom: 3px;
    border-right: 0px solid #333;
    border-left: 0px solid #333;
    transform: translateX(-50%);
}