:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

/** 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 {
  color: #01a9c1;
  font-size: 1.125rem;
  line-height: 1.75rem;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pager__item:not(.pager__item--first):not(.pager__item--last):not(.pager__item--next):not(.pager__item--previous) {
  flex: 0 0 32px;
  max-width: 32px;
}
.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 16px;
}
.pager__item.is-active {
  background: #01a9c1;
  color: #ffffff;
  font-weight: 700;
}
.pager__item a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: transparent;
}
.pager__item a:hover, .pager__item a[data-hovered=true] {
  text-decoration-color: #01a9c1;
}
.pager__item--first, .pager__item--last {
  white-space: nowrap;
}
.pager__item--first a, .pager__item--last a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: #01a9c1;
}
.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 32px 0 0;
}
.pager__item--last, .pager__item--next {
  margin: 0 0 0 32px;
}
.pager__item--next a, .pager__item--previous a {
  width: 12px;
  overflow: hidden;
  text-indent: -100px;
  position: relative;
}
.pager__item--next a:before, .pager__item--previous a:before {
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #01a9c1;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.pager__item--next a:hover:before, .pager__item--previous a:hover:before {
  border-color: transparent transparent transparent #000000;
}
.pager__item--previous {
  transform: scaleX(-1);
}