/* Timeline */
#timeline {
    width: 60%;
    height: 100%;
    position: relative;
}

#dates a {
    color: #b8cbff;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

#dates a:hover, #dates a.selected {
    color: #7a9dff;
}

.time {
    color: #7a9dff;
    font-size: 48px;
    margin: 20px 0;
    margin-bottom: 5px;
    text-align: left;
    padding-left: 64px;
}

#dates {
    width: 100%;
    height: 60px;
    overflow: hidden;
}

#dates li {
    list-style: none;
    float: left;
    padding-left: 24px;
    height: 50px;
    font-size: 24px;
    text-align: center;
}

#dates a {
    line-height: 38px;
}

#dates .selected {
    font-size: 38px;
}

#issues {
    width: 100%;
    height: auto;
}

#issues li {
    width: 100%;
}

#timeline .content {
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
}

.arrow-icon {
    fill: hsla(0, 0%, 93%, 0.9);
    width: 32px;
    height: 32px;
    position: absolute;
    top: 170px;
    transition: fill 200ms ease;
}

.arrow-icon.next {
    right: 0;
}

.arrow-icon.prev {
    left: 0;
}

.arrow-icon:hover {
    fill: hsla(224, 100%, 74%, 0.9);
}
/* ---------------------------- */

/* Mobile Settings */
@media only screen and (max-width: 900px) {
    #dates li {
        font-size: 16px;
        padding-left: 12px;
    }
    #dates .selected {
        font-size: 28px;
    }
    .time {
        font-size: 36px;
    }
    #timeline {
        width: 95%;
    }
    .time {
        padding-left: 32px;
    }
    #next, #prev {
        font-size: 24px;
    }
}
/* ---------------------------- */