.content .timeline-container {
    background: #fff;border-radius: 5px;    -moz-box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    -webkit-box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    -o-box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
    margin: 0px auto;
    padding: 15px 0 15px;
    min-height: 450px;
}

/* this is altering the timeline behaviour */
.timeline:before {
    left: 50%;
    background:black;
    color:#1d8ffe;
}

/* this if for moving the timeline's display content in alignment with timeline */
.timeline li {
    left: 50%;
    padding-left:10px;
    width:40%;
    
}

/* this is displaying the event on timeline-circle on the time */
.timeline .timeline-icon {
    margin-left: -10px;
    left: 0;
    width: 20px;
    height: 20px;
    top: 45%;
}

.inner-one {
    border: 1px solid #c9c9c9;
    height: 100%;
    width: 100%;
    background: white;
    border-radius: 50%;
    padding: 3px;
    box-sizing: border-box;
}

.inner-two {
    height: 100%;
    width: 100%;
    background: #1d8ffe;
    border-radius: 50%;
    padding: 3px;
    box-sizing: border-box;
}

/* event container dimensions */
.timeline .timeline-body {
    width: 325px;
    height:inherit;
    min-height: 125px;
    border-radius: 25px;
    padding: 0;
    border: 1px solid rgb(204, 208, 212);
    
    
}


/* content for to be displayed on the right hand side of the timeline */
.timeline li:nth-child(odd) .timeline-body:before {
    border-right-color: #1d8ffe;
    top: 45%;
    color:#1d8ffe;
}

.timeline li:nth-child(odd) .timeline-body {
    margin-left: 20px;
    margin-right: 0;
}

/* content for to be displayed on the left hand side of the timeline */

/* this is for rempving the default arrow behaviour of the container */
.timeline li:nth-child(even) .timeline-body:before {
    border-left-color: transparent;
    border-right-color: transparent;
}

/* this is moving the container to left hand side of the timeline */
.timeline li:nth-child(even) .timeline-body {
    left: -385px;
    margin-left: 20px;
    margin-right: 20px;
}
    /* this is for displaying the arrow on the right hand side of the container */
    .timeline li:nth-child(even) .timeline-body:after {
        content: '';
        display: block;
        position: absolute;
        left: 100%;
        top: 45%;
        border-top: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #1d8ffe;
    }

/* end here for above blocks */


/* container behaviour based on characterstics of the index value in list*/
li:nth-child(odd) .timeline-date {
    background: #1d8ffe;
    color: white;
    width: 25%;
    float: left;
    min-height:125px;
    border-radius: 25px 0 0 25px;
    border-bottom-color: #1d8ffe;
    padding: 20px 10px 20px;
    text-align: center;
}

li:nth-child(even) .timeline-date {
    background: #1d8ffe;
    color: white;
    width: 25%;
    float: right;
    min-height:125px;
    border-radius: 0 25px 25px 0;
    border-bottom-color: transparent;
    padding: 20px 10px 20px;
    text-align: center;
}

.timeline-date-container{
    display:table-cell;
    vertical-align:middle;
}

.timeline-date .timeline-day {
    font-size: 36px;
}

.timeline-date .timeline-month-year {
    font-size: 13px;
    padding: 5px 8px 5px;
}

.timeline-content {
    color:black;
    width: 75%;
    float: right;
    border-radius: 0 25px 25px 0;
    
}

    .timeline-content-each .timeline-title {
        font-size: 16px;
        font-weight:bold;
        border-bottom: 1px solid rgb(204, 208, 212);
        padding-top: 10px;
        padding-left: 20px;
    }

    .timeline-content-each .timeline-message {
        padding: 10px 20px 10px;
    }

.timeline-message-highlight {
    font-weight: bold;
}

.NameHighlight{	color:#C80C0B; }

.clear{ clear:both; }
.btn.btn-success.btn-scroll-to-top,.btn.btn-success.btn-scroll-to-top:hover,.open .dropdown-toggle.btn-success{background:#1d8ffe;}