/*----------------------
    Pagination
-----------------------*/
.pagination li {
    margin-right: 10px;

    &:last-child {
        margin-right: 0;
    }

    a {
        font-size: 20px;
        font-weight: 700;
        display: block;
        width: 50px;
        height: 50px;
        line-height: 46px;
        text-align: center;
        border-radius: 50%;
        color: $color-secondary;
        border: 2px solid #e6e8eb;
        background-color: $color-white;
        @include prefix(transition, all 0.3s linear, webkit moz ms o);
    }

    a:hover,
    a.current {
        color: $color-white;
        border-color: $color-primary;
        background-color: $color-primary;
    }
}

/* Mobile Phones and tablets */
@include xs-sm-screens {
    .pagination li a {
        font-size: 16px;
        width: 35px;
        height: 35px;
        line-height: 31px;
    }
}