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

/* Using .pager selector on the first one to override .region-content ul. */
.pager .pager__items {
  padding: 0;
  font-family: "GothamBook", sans-serif;
}
.pager__item {
  padding: 8px 8px;
  font-size: 0.8em;
  background-color:#c5d3e2;
  border-radius:6px;
  margin:3px;
  font-weight:600
}
.pager__item a {
  display: inline-block;
  border-bottom: 0;
}
.pager__item.is-active a {
  color: #3b3b3b;
  border-bottom: 0;

}
.pager__item.is-active{
	background-color: #fff;
	border: 1px solid #9bb0c4;
}

.pager__item--first,
.pager__item--previous {
  padding: 8px 8px 8px 8px; /* LTR */
  background-color:none;
}
[dir="rtl"] .pager__item--first,
[dir="rtl"] .pager__item--previous {
  padding-right: 0;
  padding-left: 8px;
  background-color:none;
}
.pager__item--ellipsis {
  padding: 8px 8px;
}
.pager__item--last,
.pager__item--next {
  padding: 8px 8px 8px 8px; /* LTR */
  background-color:none;
}
[dir="rtl"] .pager__item--last,
[dir="rtl"] .pager__item--next {
  padding-right: 8px;
  padding-left: 0;
  background-color:none;
}
