/**
 * @about: 	pbuic-pager.css - Layout for the Pager UI component of ProBase
 */

ul.pbuic-pager {
    margin: 3em 0;
    padding: 0;
    list-style: none;
    font-size: .95em;
    text-align: center;
}

.pbuic-pager li {
    float: none;
    display: inline-block;
    margin-bottom: .6em;
    vertical-align: middle;
}

.pgr-active,
.pgr-inactive,
.pbuic-pager a {
    display: block;
    width: 2em;
    height: 2em;
    margin: 0 .3em;
    padding: 0;
    line-height: 2em;
    text-align: center;
    color: #04274b;
    text-decoration: none;
    border: 1px solid #04274b;
    border-radius: 50%;
}

.pgr-active {
    color: #fff;
    background: #04274b;
}

.pgr-inactive {
    background: rgba(4, 39, 75, 0.2);
}

.pbuic-pager a:hover {
    text-decoration: none;
    color: #fff;
    background: #04274b;
}

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

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

.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: 'fjell';
    font-weight: normal;
    text-indent: 0;
}

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

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

.pgr-previous a:hover,
.pgr-next a:hover {
    color: #fff;
    text-decoration: none;
}
