.pager {
    margin: auto;
    display: flex;
    text-align: center;
    justify-content: center;
}
.pager > li {
    padding: 10px 15px;
    text-align: center;
    min-width: 16px;
    background-color: #fff;
    border: 1px solid #eee;
    margin: 10px;
    cursor: pointer;
}
.pager > li:hover {
    background: linear-gradient(91deg, #47a7f1 0%, #3c8fcf 100%);
    color: #fff;
}
.active {
    background: linear-gradient(91deg, #47a7f1 0%, #3c8fcf 100%);
    color: #fff;
}
.pager > .pager-disabled {
    background-color: #e1e1e1;
    color: #bfbfbf;
    cursor: not-allowed;
}
.pager > .pager-disabled:hover {
    cursor: not-allowed;
    background: none;
    background-color: #e1e1e1;
    color: #bfbfbf;
}
