.pbuic-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.pgr-active,
.pgr-inactive,
.pbuic-pager a {
    display: block;
    width: 2em;
    height: 2em;
    margin: 0 .3em;
    padding: 0;
    line-height: 2em;
    text-align: center;
    text-decoration: none;
    color: var(--primaryColor500);
    border-radius: var(--borderRadius);
}

.pgr-active {
    color: var(--baseLight100);
    background: var(--primaryColor500);
    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.055), 0 0 30px 0 rgba(0, 0, 0, 0.03);
}

.pgr-inactive {
    color: var(--baseLight500);
    background: var(--baseLight100);
}

.pbuic-pager a:hover {
    color: var(--baseLight100);
    background: var(--primaryColor500);
}

.pgr-previous,
.pgr-next {
    position: relative;
}

.pgr-previous a,
.pgr-previous span,
.pgr-next a,
.pgr-next span {
    overflow: hidden;
    text-indent: -999em;
}

.pgr-previous a::before,
.pgr-previous span::before,
.pgr-next a::before,
.pgr-next span::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: var(--iconFont);
    font-weight: 400;
    text-indent: 0;
}

.pgr-previous a::before,
.pgr-previous span::before {
    content: '\e801';
    visibility: visible;
}

.pgr-next a::before,
.pgr-next span::before {
    content: '\e802';
    visibility: visible;
}

.pgr-previous a:hover,
.pgr-next a:hover {
    color: var(--baseLight100);
}
