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

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

.pbuic-pager li {
    display: inline-block;
    vertical-align: top;
    margin: 0 .3em;
}

.pbuic-pager a,
.pbuic-pager span {
    text-decoration: none;
    display: block;
    padding: .4em 0.6em;
    line-height: 1em;
    text-align: center;
    font-weight: bold;
    color: inherit;
}

.pbuic-pager a:hover {
    color: #34842b;
}

.pgr-active span {
    color: #fff;
    background-color: #34872c;
}

.pgr-previous a,
.pgr-previous a:hover,
.pgr-previous span,
.pgr-next a,
.pgr-next a:hover,
.pgr-next span {
    width: 2em;
    height: 1.8em;
    overflow: hidden;
    color: transparent;
}

.pgr-previous a:before,
.pgr-previous span:before,
.pgr-next a:before,
.pgr-next span:before {
    font-family: 'SS BlackTie-Light';
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    -webkit-font-feature-settings: 'liga';
    -moz-font-feature-settings: 'liga=1';
    -moz-font-feature-settings: 'liga';
    -ms-font-feature-settings: 'liga' 1;
    -o-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #090909;
}

.pgr-previous a:hover:before,
.pgr-next a:hover:before {
    color: #37b43e;
}

.pgr-previous a:before,
.pgr-previous span:before {
    content: '◅';
}

.pgr-next a:before,
.pgr-next span:before {
    content: '▻';
}

.pgr-inactive {
    opacity: 0.3;
}