/* pagelist */

.pagelist {
    padding: 30px 0;
    width  : 100%;
}

.pagelist ul {
    margin           : 0;
    padding          : 0;
    width            : 100%;
    display          : block;
    list-style       : none;
    display          : -webkit-box;
    display          : -ms-flexbox;
    display          : flex;
    -webkit-box-align: center;
    -ms-flex-align   : center;
    align-items      : center;
    -webkit-box-pack : center;
    -ms-flex-pack    : center;
    justify-content  : center;
}

.pagelist li {
    height     : 32px;
    margin     : 0 5px;
    text-align : center;
    font-family: inherit;
    position   : relative;
}

.pagelist li.page-active a {
    color           : #0075d7;
    background-color: #f6f6f6;
}

.pagelist li a {
    height     : 100%;
    display    : block;
    min-width  : 32px;
    line-height: 32px;
    position   : relative;
}

.pagelist li a:hover {
    background-color: #f6f6f6;
}

.pagelist li.page-next a,
.pagelist li.page-prev a {
    border   : 0;
    font-size: 1.5rem;
}

.pagelist li.page-next.disabled,
.pagelist li.page-prev.disabled {
    opacity       : 0.3;
    pointer-events: none;
}

.pagelist li.page-next i,
.pagelist li.page-prev i {
    display    : block;
    line-height: 1;
    padding-top : 8px;
}

.pagelist li i:before {
    width      : auto;
    margin     : 0;
    line-height: 1;
    font-size  : 24px;
    font-weight: 400;
}

.pagelist li.page-prev i:before {
    transform: scaleX(-1);
}