
:root {
	--background-color: #fff;
	--background-hover: #419be1;
	--text-color: #252525;
	--text-hover-color: #fff;
	--border: 1px solid rgba(0, 0, 0, 0.1);
}
ul[data-type="pagination"] {
	width: auto;
	display: flex;
	justify-content: center;
	gap: 5px;
	left: 50%; transform: translateX(-50%);
	list-style: none;
	/*border-top: var(--border);
	padding: 0 2.5px;*/
}
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-color);
	border: var(--border);
	/*border-radius: 2px;*/
	cursor: pointer;
	text-align: center;
}
ul[data-type="pagination"] li:hover,
ul[data-type="pagination"] li.current {
	background: var(--background-hover);
	color: var(--text-hover-color);
}
ul[data-type="pagination"] li.current {
	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"}