.timeline-container {
    position: relative;
    margin: 0;
    padding: 25px;
    width: 300px;
    box-sizing: border-box;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 49.7%;
    width: 2.1px;
    height: 100%;
    background: #0d68c9;
}

.timeline-list {
    margin: 0;
    padding: 0;
}

.timeline-item {
    list-style: none;
    position: relative;
    padding: 20px 0;
    text-align: right;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: white;
    border: 2.5px solid #0d68c9;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: #0d68c9;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
}

.timeline-item:hover::after {
    background: black;
}

.timeline-text {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: calc(50% - 20px);
    text-align: left;
    vertical-align: middle;
    padding-left: 20px;
    white-space: nowrap;
}

.ms-timeline-left {
    list-style-type: none;
    border-left: solid 3px #143D8C;
    position: relative;
    padding-left: 0;
}

.ms-timeline-left .ms-timeline-left-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
    margin-bottom: 5rem;
}

.ms-timeline-left .ms-timeline-left-item:before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
    border: solid 3px #143D8C;
    background-color: #fff;
    height: 21px;
    width: 21px;
    left: -12px;
    top: 0;
}

.ms-timeline-left .ms-timeline-left-item .ms-timeline-left-left {
    float: left;
    margin-left: -300px;
    margin-top: -30px;
}

.ms-timeline-left .ms-timeline-left-item:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
    background-color: #143D8C;
    height: 9px;
    width: 9px;
    left: -6px;
    top: 6px;
    transition: all ease .2s;
}


