/**
 * Pagination
 * 
 * @copyright (c) ontheway.ch
 * @author Joëlle Galloni et Pascal Favre
 */

.pagination {
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
}
.pagination .page,
.pagination .next {
    text-align: center;
    display: inline-block;
    padding: 0px 1px;
    color: #7A7A7A;
}
.pagination .page:not(.active):hover,
.pagination .next:hover {
    color: #F89406;
}
.pagination .page {
    min-width: 25px;
}
.pagination .next {
    min-width: 15px;
}
.pagination .active {
    color: #F89406;
    cursor: default;
    font-weight: bold;
}