/*prev link only*/

.prev-year {
    display: inline-block;
    margin-top: 40px;
    border-bottom: 1px solid;
    line-height: normal;
    position: relative;
}

.prev-year:hover span { right: -30px;}

.prev-year span {
    position: absolute;
    width: 18px;
    height: 18px;
    display: inline-block;
    right: -25px;
    top: 4px;
    bottom: 0;
    margin: auto;
    background: #03a9f5;
    border-radius: 100%;
    transition: ease all 0.5s;
}

.prev-year span:before {
    background: #000;
    height: 9px;
    transform: rotate( 45deg);
    top: 8px;
    left: 9px;
}

.prev-year span:before,
.prev-year span:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 7px;
    background: #ffffff;
    transition: .5s ease;
}

.prev-year span:after {
    transform: rotate( 135deg);
    bottom: 8px;
    left: 9px;
}

/*prev link only*/