/**
 * @file
 * Styles for Flashy+'s mini pager.
 */

/* Using .pager selector on the first one to override .region-content ul. */
.pager__items {
  margin: 20px 0;
  padding: 0;
  font-size: 0;
  text-align: center;
}
li.pager__item {
  padding: 0;
  margin: 0;
  margin-top: -1px;
  display: inline-block;
}
li.pager__item > a,
li.pager__item.is-active {
  font-size: 16px;
  text-align: center;
  min-height: 50px;
  min-width: 50px;
  padding: 0;
  margin: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  line-height: 48px;
  text-decoration: none;
  background-color: transparent;
  display: inline-block;
  color: #424242;
}
li.pager__item.is-active {
  border-width: 0;
  margin: 0 15px;
}

/*mini pager @colored regions*/
.region--light-typography li.pager__item > a {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.region--light-typography li.pager__item.is-active {
  color: #ffffff;
}
.region--light-typography li.pager__item a:hover,
.region--light-typography li.pager__item a:focus {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/*Reset Bootstrap's rules*/
.pager {
  margin: 0;
}
