﻿
/* The actual timeline (the vertical ruler) */
.ift-timeline {
    padding: 0px 48px 24px 48px;
    text-align: left;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
    .ift-timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background: linear-gradient(to bottom, rgba(60, 175, 148, 0), rgba(60, 175, 148, 1) 10%, rgba(60, 175, 148, 1) 95%, rgba(60, 175, 148, 0) 100%) no-repeat center center;
        top: 0;
        bottom: 0;
        margin-left: -1px;
    }

/* Container around content */
.ift-timeline-container {
    padding: 10px 60px;
    position: relative;
    background-color: inherit;
}

/* The circles on the timeline */
.ift-timeline-container::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: -7px;
    background-color: #3CAF94;
    top: 77px;
    border-radius: 50%;
    z-index: 1;
}

/* Add arrows to the left container (pointing right) */
.ift-timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 84px;
    width: 50px;
    height: 3px;
    z-index: 1;
    background-color: #3CAF94;
    right: 0px;
}

/* Add arrows to the right container (pointing left) */
.ift-timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 84px;
    width: 50px;
    height: 3px;
    z-index: 1;
    background-color: #3CAF94;
    left: 0px;
}

/* The actual content */
.ift-timeline-content {
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    border-radius: 6px;
}


@media (max-width: 767px) {
    .ift-timeline {
        padding: 18px 12px;
    }

    .ift-timeline-container {
        padding: 10px 0 10px 60px;
    }

    .ift-timeline-content {
        padding: 20px 30px;
    }
}