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

/* Using .pager selector on the first one to override .region-content ul. */
.pager__items {
  margin: 20px 0 20px;
  font-size: 0;
}
li.pager__item {
  padding: 0;
  margin: 0 10px;
  border-bottom: none;
  display: inline-block;
  font-size: 16px;
}
li.pager__item > a {
  padding: 11px 15px;
  border: none;
  border-bottom: 1px solid transparent;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  line-height: 1;
  text-decoration: none;
  color: #2e3436;
}
li.pager__item > a:hover {
  background-color: transparent;
}
li.pager__item.is-active > a {
  border-bottom: 1px solid #2e3436;
  color: #2e3436;
  line-height: 1;
  font-weight: 300;
}
li.pager__item > a:focus {
  background: none;
}
