/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~ Product and property of Titan Informatics LLC ~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
ul[data-type="pagination"] {
  width: auto;
  list-style: none;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  flex-direction: row;
  gap: 5px;
}

ul[data-type="pagination"]::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  border-top: var(--border);
  pointer-events: none;
}

ul[data-type="pagination"] li {
  font-size: 1.25rem;
  line-height: 35px;
  width: auto;
  min-width: 45px;
  padding: 5px 5px 1px 5px;
  /*margin: 5px 2.5px;*/
  background: var(--background-1);
  border: var(--border);
  cursor: pointer;
  text-align: center;
}
ul[data-type="pagination"] li:hover {
  background-color: #419be1;
  color: #fff;
}
ul[data-type="pagination"] li.current {
  background-color: #419be1;
  color: #fff;
  cursor: default;
}
ul[data-type="pagination"] li.disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}
ul[data-type="pagination"] li:nth-of-type(1)::before,
ul[data-type="pagination"] li:nth-of-type(2)::before,
ul[data-type="pagination"] li:nth-last-of-type(2)::before,
ul[data-type="pagination"] li:nth-last-of-type(1)::before {
  font-family: "Font Awesome 6 Sharp";
  font-size: 1.5rem;
  font-weight: 300;
}
ul[data-type="pagination"] li:nth-of-type(1)::before {content: "\f100"}
ul[data-type="pagination"] li:nth-of-type(2)::before {content: "\f104"}
ul[data-type="pagination"] li:nth-last-of-type(2)::before {content: "\f105"}
ul[data-type="pagination"] li:nth-last-of-type(1)::before {content: "\f101"}
