/**
 * @file
 * Styles for savoir's pagination.
 */

/* Using .pager selector on the first one to override .region-content ul. */
.pager .pager__items {
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.pager__item {
  font-size: .1px;
  padding: 0;
}
.pager__item a {
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
}
.pager__item a,
.pager__item--ellipsis {
  font-size: 15px;
}
.pager__item.is-active a {
  border-bottom: 0;
  font-weight: bold;
  background-color: #ccc;
  border-radius: 5px;
  transition: background-color .3s;
}
.pager__item:not(.is-active) a:hover {
  background-color: #aaa;
  border-radius: 5px;
  transition: background-color .3s;
}
.pager__item--first,
.pager__item--previous,
[dir="rtl"] .pager__item--first,
[dir="rtl"] .pager__item--previous,
.pager__item--ellipsis,
.pager__item--last,
.pager__item--next,
[dir="rtl"] .pager__item--last,
[dir="rtl"] .pager__item--next {
  padding: 0;
}
@media all and (min-width: 569px) and (max-width: 850px) {
  .pager .pager__items {
    line-height: inherit;
  }
}
@media all and (min-width: 851px) {
    .pager .pager__items {
    line-height: inherit;
  }
}
