﻿/* TIMELINE*/

.timeline {
    border-left: 1px solid rgba(63,101,217,0.50);
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background: #fafdff;
    margin: 0 auto;
    letter-spacing: 0.2px;
    position: relative;
    padding: 5px 51px;
    list-style: none;
    text-align: left;
}

.timeline .event {
    padding-bottom: 0px;
    margin-bottom: 0px;
    position: relative;
}

@media (max-width: 767px) {
    .timeline .event {
        padding-bottom: 10px;
    }
}


.timeline .event:before,
.timeline .event:after {
    position: absolute;
    display: block;
    top: 0;
}

.timeline .event:before {
    content: attr(data-date);
    text-align: right;
    min-width: 120px;
}

@media (max-width: 767px) {
    .timeline .event:before {
        left: 0px;
        text-align: left;
    }
}

.timeline .event:after {
    -webkit-box-shadow: 0 0 0 2px #3f65d9;
    box-shadow: 0 0 0 3px #3f65d9;
    left: -55.8px;
    background: #fff;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    content: "";
    top: 8px;
}
