#timeline {
    list-style: none;
    margin: 10px 0 10px 0px;
    padding-left: 30px;
    border-top: 8px solid #24135f;
    display: inline-flex;
}

    #timeline li {
        min-width: 270px;
    }

label.time {
    font-size: 1.3em;
    z-index: 100;
    cursor: pointer;
    transition: transform 0.2s linear;
}

.triangle {
    display: inline-block;
    border: solid transparent;
    pointer-events: none;
    border-bottom-color: #8469e1;
    border-width: 17px;
    margin-left: -4px;
}

label.time-cir {
    display: block;
    cursor: pointer;
    margin-top: 40px;
}

.circle {
    margin-top: -55px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 5px solid #24135f;
    border-radius: 50%;
    display: block;
}

.radio_checked label {
    cursor: auto;
}

.radio_checked .circle {
    background: orange;
}


/* -------------------------------------
 * mobile phones (vertical version only)
 * ------------------------------------- */
@media screen and (max-width: 767px) {
    #timeline {
        margin-left: 10px;
        padding-left: 0;
        border-top: none;
        border-left: 8px solid #24135f;
        display: block;
    }

        #timeline li {
            min-width: initial;
            margin-left: -14px;
            margin-top: 15px;
        }

    .m-time {
        margin-bottom: 15px;
    }

    label.time {
        font-size: 1.1em;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-bottom: 3px;
    }

    .content{
        display:inline-block;
    }

    .triangle {
        border-right-color: #8469e1;
        border-width: 15px;
        border-bottom-color: transparent;
    }


    label.time-cir {
        display: inline-block;
        cursor: pointer;
        margin-top: 4px;
    }

    .circle {
        margin-top: 0px;
    }
}
