/**
 * @file
 * Styles for Journaleight's pagination.
 */
/* Using .pager selector on the first one to override .region-content ul. */
.pager .pager__items {
  margin: 80px 0 10px;
  padding: 0;
  text-align: left;
}
li.pager__item {
  display: inline-block;
  padding: 0;
  margin: 0 15px 10px 0;
  border-bottom: none;
  font-size: 14px;
}
li.pager__item.is-active {
  font-weight: normal;
}
li.pager__item > a {
  padding: 3px 5px;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 1;
  display: inline-block;
}
li.pager__item > a:hover {
  background-color: transparent;
  color: #ffffff;
}
li.pager__item.is-active > a {
  color: #3f3f3f;
  line-height: 1;
  position: relative;
}
li.pager__item.is-active > a:after {
  content: "";
  background-color: #dddddd;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -7px;
  left: 0;
  -webkit-transition: ease-in-out 0.2s;
  -o-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}
li.pager__item.is-active > a:hover:after {
  background-color: transparent;
}
li.pager__item.is-active > a:hover {
  color: #ffffff;
}