/** here to imitate Drupal styles, delete when migrate to Drupal **/
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

/** ---- **/
.pager {
  margin: 60px auto 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.pager__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pager__item {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5625rem;
  text-align: center;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000000;
}
.pager__item:not(.pager__item--first):not(.pager__item--last):not(.pager__item--next):not(.pager__item--previous) {
  flex: 0 0 40px;
  max-width: 40px;
}
.pager__item:not(.pager__item--first):not(.pager__item--last):not(.pager__item--next):not(.pager__item--previous) + .pager__item:not(.pager__item--first):not(.pager__item--last):not(.pager__item--next):not(.pager__item--previous) {
  margin: 0 0 0 8px;
}
.pager__item.is-active {
  font-weight: 900;
}
.pager__item.is-active a {
  outline: solid #40b93c 3px;
  outline-offset: -3px;
}
.pager__item a {
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pager__item a:hover {
  color: #40b93c;
}
.pager__item--first, .pager__item--last {
  white-space: nowrap;
}
.pager__item--first a, .pager__item--last a {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-skip-ink: none;
  text-decoration-color: #40b93c;
  text-decoration-thickness: 2px;
}
.pager__item--first a:hover, .pager__item--first a[data-hovered=true], .pager__item--last a:hover, .pager__item--last a[data-hovered=true] {
  text-decoration-color: transparent;
}
.pager__item--first, .pager__item--previous {
  margin: 0 16px 0 0;
}
.pager__item--last, .pager__item--next {
  margin: 0 0 0 16px;
}
.pager__item--next a, .pager__item--previous a {
  width: 24px;
  overflow: hidden;
  text-indent: -100px;
  position: relative;
}
.pager__item--next a:before, .pager__item--previous a:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  width: 11px;
  height: 17px;
  background: url(../images/assets/arrow.svg) center center no-repeat;
}
.pager__item--previous {
  transform: scaleX(-1);
}