﻿#conference-timeline {
    position: relative;
    max-width: 920px;
    width: 100%;
    text-align: center;
    margin-left: -10%;
}

    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        display: table;
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 900;
        text-transform: uppercase;
        background: #00b0bd;
        padding: 15px 23px;
        color: #fff;
        max-width: 5%;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    #conference-timeline .conference-center-line {
        position: absolute;
        width: 2px;
        margin: 0 49.5%;
        background: #8c8c8c;
        z-index: -1;
        top: 44%;
        height: 250%;
    }


.timeline-article {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
    overflow: visible;
}

    .timeline-article .content-right {
        /* font-weight: 500 !important; */
    }

    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
        width: 80%;
        font-family: var(--ja-font-family-2) !important;
        font-weight: 500;
    }

    .timeline-article .timeline-author {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 24px;
        color: #242424;
        text-align: right;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        position: relative;
        width: auto;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,.03);
        height: 164px;
        font-size: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* height: fit-content; */
        padding: 10% 0;
    }

        .timeline-article .content-right .sub-text {
            font-size: 2rem;
        }

    .timeline-article p {
        margin: 0 0 0 60px;
        padding: 0;
        font-weight: 400;
        color: #242424;
        font-size: 14px;
        line-height: 24px;
        position: relative;
    }

        .timeline-article p span.article-number {
            position: absolute;
            font-weight: 300;
            font-size: 44px;
            top: 10px;
            left: -60px;
            color: #00b0bd;
        }

    .timeline-article .content-left-container {
        float: left;
    }

    .timeline-article .content-right-container {
        float: right;
    }

    .timeline-article .content-left:before,
    .timeline-article .content-right:before {
        position: absolute;
        top: 20px;
        font-size: 23px;
        font-family: "FontAwesome";
        color: #fff;
    }

    .timeline-article .content-left:before {
        content: "\f0da";
        right: -8px;
    }

    .timeline-article .content-right:before {
        content: "\f0d9";
        left: -8px;
    }

    .timeline-article .meta-date {
        top: 0px;
        left: 50%;
        width: 100px;
        height: 100px;
        border-radius: 100%;
        background: white;
        border: 1px solid #b0b0b0;
        color: #a6a6a6;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        overflow: visible;
        justify-content: center;
    }

        .timeline-article .meta-date .date,
        .timeline-article .meta-date .month {
            display: block;
            text-align: center;
        }

        .timeline-article .meta-date .month {
            font-size: 2.5rem;
            color: #a6a6a6;
            line-height: 2.5rem;
            font-family: 'Times New Roman'
        }

        .timeline-article .meta-date .date {
            font-size: 1.1rem;
            color: #a6a6a6;
        }

content-right-container
.timeline-article .meta-date .month {
    font-weight: 500;
    color: #808080;
}

.progress-row {
    display: flex;
    flex-direction: row;
    margin-left: 16%;
    width: 76%;
    align-items: flex-end;
}

.progress-left {
    width: 100%;
}

.progress-right {
    width: 20%;
}

/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 768px) {
    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        margin: 0;
    }

    .timeline-article .meta-date {
        margin-left: 0px;
        width: 60px;
        height: 60px;
    }

        .timeline-article .meta-date .date,
        .timeline-article .meta-date .month {
            display: block;
            text-align: center;
            /* line-height: 60%; */
        }

        .timeline-article .meta-date .date {
            font-size: 0.7rem;
        }

        .timeline-article .meta-date .month {
            font-size: 0.7rem;
            font-size: 1.8rem;
            line-height: 1.8rem;
        }

    .timeline-article .content-left-container {
        margin-bottom: 20px;
    }

    .timeline-article .content-left:before {
        content: "\f0d9";
        right: auto;
        left: -8px;
    }

    .timeline-article .content-right {
        height: 100px;
    }

    /*Reponsive for content right of progress bar*/

    @media only screen and (min-width: 1025px) and (max-width: 1600px) {
        .timeline-article .content-right {
            font-size: 2.5rem;
        }

            .timeline-article .content-right .sub-text {
                font-size: 1.5rem;
            }
    }

    @media only screen and (min-width: 769px) and (max-width: 1024px) {
        .timeline-article .content-right {
            font-size: 1.8rem;
        }

            .timeline-article .content-right .sub-text {
                font-size: 1.5rem;
            }
    }

    @media only screen and (min-width: 501px) and (max-width: 768px) {
        .timeline-article .content-right {
            font-size: 1.5rem;
        }

            .timeline-article .content-right .sub-text {
                font-size: 1rem;
            }
    }

    @media only screen and (max-width: 500px) {
        .timeline-article .content-right {
            font-size: 1.2rem;
        }

            .timeline-article .content-right .sub-text {
                font-size: 0.7rem;
            }

        .progress-row {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
