.BTLituTimeline{
    list-style: none;
    list-style-type: none;
    padding-left: 2rem;
    box-sizing: border-box;
    margin-bottom: 2rem;
    overflow: visible;
    position: relative;
}



 li::marker{
    content: "";
}

.BTLituCard {
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 0 1.5rem rgba(169,202,216,.0784313725);
    background-color: #e5f5fb;
    border-top: 3px solid #009cd6;
    width: 75%;
    overflow: visible;
    padding: 1.5rem;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 2rem;
    position: relative;
    
}

.BTLituCard:before {
    content: "";
    position: absolute;
    background-color: #009cd6;
    height: 1rem;
    width: 1rem;
    border-radius: 1rem;
    left: -2rem;
    top: calc(50% - 0.5rem);
    z-index: 1000;
    overflow: visible;
}

.BTLituCard:after {
    content: "";
    position: absolute;
    background-color: rgba(112,112,112,.3);
    height: calc(100% + 2.1rem);
    width: 2px;
    left: calc(-1.5rem - 1px);
    top: 0;
    overflow: visible;
}


.BTLituDateHighlight {
    font-style: italic;
}