/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_pagination > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.sn_pagination > ul > li {
  flex-shrink: 0;
  display: block;
  transition: opacity 0.35s ease;
  overflow: hidden;
}
.sn_pagination > ul > li > a, .sn_pagination > ul > li > span {
  width: 2.5rem;
  height: 2.5rem;
  padding-top: 0.25rem;
  padding-right: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0069A7;
  border: 0.0625rem solid #0069A7;
  background-color: transparent;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: color 0.35s ease, background-color 0.35s ease;
}
@media only screen and (min-width: 62em) {
  .sn_pagination > ul > li > a, .sn_pagination > ul > li > span {
    width: 3rem;
    height: 3rem;
  }
}
.sn_pagination > ul > li.prev > a, .sn_pagination > ul > li.prev > span, .sn_pagination > ul > li.next > a, .sn_pagination > ul > li.next > span {
  background-color: transparent;
  color: #0069A7;
}
.sn_pagination > ul > li.prev.__disabled, .sn_pagination > ul > li.next.__disabled {
  opacity: 0.5;
  pointer-events: none;
}
.sn_pagination > ul > li.__active:not(.__dots) > a, .sn_pagination > ul > li:hover:not(.__dots) > a {
  color: #fff;
  background-color: #0069A7;
}