.sociales {
    text-align: center;
    margin-bottom: 20px;
}

#timeline:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 55px;
    width: 100%;
    margin: auto;
    border-radius: 50%;
    border: 1px;
    border-color: #fff;
    border-style: solid;
    opacity: 0.5;
    z-index: -1;
}

#timeline {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

#dates {
    width: 800px;
    height: 100px;
    overflow: hidden;
}

    #dates li {
        position: relative;
        list-style: none;
        float: left;
        width: 125px;
        height: 50px;
        font-size: 20px;
        text-align: center;
        padding-bottom: 0.95rem;
    }

        #dates li a:after {
            content: "";
            width: 19px;
            height: 19px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: #128e9d;
            border-radius: 50%;
            position: absolute;
            opacity: 1;
            left: 50%;
            bottom: -5%;
            transform: translate(-50%, 0);
        }

    #dates a {
        line-height: 38px;
        padding-bottom: 10px;
        color: #fff;
    }

    #dates .selected:before {
        content: "";
        position: absolute;
        left: 50%;
        right: 0;
        top: 55px;
        width: 180%;
        margin: auto;
        border: 1px;
        border-color: gold;
        border-style: solid;
        opacity: 1;
        z-index: 0;
        transform: translateX(-50%);
    }

    #dates li:first-child .selected:before {
        left: 50%;
        width: 100%;
        transform: unset;
    }

    #dates li:last-child .selected:before {
        left: unset;
        right: 50%;
        width: 90%;
        transform: unset;
    }

    #dates .selected {
        font-size: 34px;
        color: #e7c348;
    }

        #dates .selected:after {
            border-color: #e7c348;
        }

#issues {
    width: 800px;
    overflow: hidden;
}

    #issues li {
        width: 1200px;
        list-style: none;
        float: left;
    }

@media screen and (max-width: 1279px) {
    #issues li {
        width: 1120px;
    }
}

#issues li.selected img {
    -webkit-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

#issues li img {
    float: left;
    margin: 10px 30px 10px 50px;
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE 8 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); /* IE 6 & 7 */
    zoom: 1;
    -webkit-transition: all 2s ease-in-out;
    transition: all 2s ease-in-out;
    -webkit-transform: scale(0.7,0.7);
    transform: scale(0.7,0.7);
}


#next,
#prev {
    position: absolute;
    top: 46px;
    left: 100%;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-bottom: 0;
    border-left: 0;
    transform: rotate(45deg);
    overflow: hidden;
    z-index: 10;
}

    #next:hover,
    #prev:hover {
        background-position: 0 -76px;
    }

#prev {
    right: 100%;
    left: unset;
    transform: rotate(-135deg);
}

    #next.disabled,
    #prev.disabled {
        opacity: 0.2;
    }
