/* Pagers */
.pager {
  list-style: none;
  font-size: 1.1em;
  margin: 2em 0;
  text-align: center;

   li {
    display: inline-block;
  }

  a {
    background: rgba(0,0,0,0.1);
    padding: .4em .7em;
    margin: 0 .2em;
    text-decoration: none;
  }

  .is-active a {
    font-size: 1.7em;
  }

  a:is(:hover,:focus) {
    background: rgba(0,0,0,0.2);
  }
}

/* Views mini pager */
.mini-pager {
  background: rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  overflow: auto;
  width: 100%;
}
.mini-pager > * {
  flex-basis: 33%;
  padding: .4em;
}
.mini-pager .pager-current {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.mini-pager .pager-prev a,
.mini-pager .pager-next a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mini-pager .pager-next a {
  justify-content: flex-end;
}
.mini-pager .pager-prev a:before,
.mini-pager .pager-next a:after {
  content: '';
  background: url(../images/angle-icons.svg) no-repeat;
  background-size: 3.2em;
  height: 1.2em;
  width: 1.2em;
  opacity: .5;
  flex: 0 0 1.2em;
}
.mini-pager .pager-prev a:before {
  background-position: 0.2em -5.1em;
  margin-right: .3em;
}
.mini-pager .pager-next a:after {
  background-position: 0.4em -3.1em;
  margin-left: .3em;
}
