/*	Copyright 2020-Present Titan Informatics LLC. All Rights Reserved.
 *
 *	Proprietary and Confidential.
 *	Author: Douglas Noorzadeh
 *
 *	This source code is the exclusive property of Titan Informatics LLC.
 *	Unauthorized use, reproduction, disclosure, or distribution without written permission is strictly prohibited.
 */

[data-type="pagination"] {
	font-weight: 600;
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	gap: 2px;
}
/*
[data-type="pagination"]::before {
	content: "";
	width: 100%;
	position: absolute;
	top: 0; left: 0;
	border-top: var(--border);
	pointer-events: none;
}
*/
[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;
}
[data-type="pagination"] li:hover,
[data-type="pagination"] li.current {
	color: var(--fff);
	border-color: var(--border1);
	background: var(--blue);
}
[data-type="pagination"] li.current {
	cursor: default;
}
[data-type="pagination"] li.disabled {
	pointer-events: none;
	opacity: 0.4;
	cursor: not-allowed;
}
[data-type="pagination"] li:nth-of-type(1)::before,
[data-type="pagination"] li:nth-of-type(2)::before,
[data-type="pagination"] li:nth-last-of-type(2)::before,
[data-type="pagination"] li:nth-last-of-type(1)::before {
	font-family: "Font Awesome 6 Sharp";
	font-size: 1.375rem;
	font-weight: 400;
}
[data-type="pagination"] li:nth-of-type(1)::before {content: "\f100"}
[data-type="pagination"] li:nth-of-type(2)::before {content: "\f104"}
[data-type="pagination"] li:nth-last-of-type(2)::before {content: "\f105"}
[data-type="pagination"] li:nth-last-of-type(1)::before {content: "\f101"}
