/**
 * @file
 * Visual styles for search pagers.
 */

.pager {
  margin: auto;
  padding-left: 0;
}

.pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  font-weight: bold;
}

.pager__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  cursor: default;
  color: var(--brandBlue);
  background-color: var(--bgColor);
  border-radius: var(--radius01);
  margin-left: var(--layout01);
}

.pager__item--active {
  color: var(--colorInverse);
  background-color: var(--brandBlue);
}

.pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.pager__link:hover {
  opacity: 0.8;
}
