/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~ Product and property of Titan Informatics LLC ~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
ul[data-type="pagination"] {
	font-weight: 600;
	width: auto !important;
	list-style: none;
	padding: 10px;
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	flex-direction: row;
	gap: 2px !important;
	/*background-color: silver;*/
}

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 0 5px;
	/*margin: 5px 2.5px;*/
	background: var(--fff);
	border: var(--border);
	cursor: pointer;
	text-align: center;
}
ul[data-type="pagination"] li:hover {
	background-color: #2f83d3;
	color: #fff;
	border-color: var(--border-hover);
}
ul[data-type="pagination"] li.current {
	background-color: #2f83d3;
	color: #fff;
	border-color: var(--border-hover);
	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.375rem;
	font-weight: 400;
}
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"}
/*
ul[data-type="pagination"] li:nth-of-type(1) {
	border-top-left-radius: 7.5px;
	border-bottom-left-radius: 7.5px;
}
ul[data-type="pagination"] li:nth-last-of-type(1) {
	border-top-right-radius: 7.5px;
	border-bottom-right-radius: 7.5px;
}
*/