/*
* 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 {
  display: flex;
  justify-content: center;
}
.sn_pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 62em) {
  .sn_pagination ul {
    gap: 1rem;
  }
}
.sn_pagination ul li {
  margin-bottom: 0;
}
.sn_pagination ul li a, .sn_pagination ul li > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid #514A3E;
  color: #514A3E;
  opacity: 0.5;
  transition: all 0.35s ease;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
}
.sn_pagination ul li a, .sn_pagination ul li > span {
  font-size: 0.875rem;
}
.sn_pagination ul li a:hover, .sn_pagination ul li > span:hover {
  opacity: 0.8;
  background: #514A3E;
  color: #fff;
}
.sn_pagination ul li.__active a {
  background: #F3BB3F;
  border-color: #F3BB3F;
  color: #322D24;
  opacity: 1;
}
.sn_pagination ul li.__active a:hover {
  opacity: 1;
}
.sn_pagination ul li.__disabled a {
  pointer-events: none;
}
.sn_pagination ul li:first-child a, .sn_pagination ul li:first-child > span, .sn_pagination ul li:last-child a, .sn_pagination ul li:last-child > span, .sn_pagination ul li.__dots a, .sn_pagination ul li.__dots > span {
  border: none;
  background: none;
  color: #322D24;
}
.sn_pagination ul li:first-child a svg-sprite, .sn_pagination ul li:first-child > span svg-sprite, .sn_pagination ul li:last-child a svg-sprite, .sn_pagination ul li:last-child > span svg-sprite, .sn_pagination ul li.__dots a svg-sprite, .sn_pagination ul li.__dots > span svg-sprite {
  width: 1.5rem;
  height: 1.5rem;
}
.sn_pagination ul li:first-child a:hover, .sn_pagination ul li:first-child > span:hover, .sn_pagination ul li:last-child a:hover, .sn_pagination ul li:last-child > span:hover, .sn_pagination ul li.__dots a:hover, .sn_pagination ul li.__dots > span:hover {
  color: #322D24;
}