.pagination {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2.5em; 
}
.pagination li {
	width: 3em; 
	text-align: center; 
	margin-right: 1em;
}
.pagination .page {
	background: white; 
}
.pagination li:last-child {
	margin-right: 0;
}
.pagination li a {
	display: block; 
	padding: 1em 0;
	text-decoration: none;
	font-size: 100%; 
	line-height: 1; 
	color: rgb(51,51,51);
}
.pagination li a:hover {
	background: rgb(238,238,238); 
	transition: all 0.25s; 
}
.page {
	border: 1px solid rgb(128,128,128);
}
.pagination .navi-active a {
	pointer-events: none; 
	background: rgb(102,102,102) !important;
	color: white !important;
}
.pagination .prev a:hover,
.pagination .next a:hover {
	background: transparent; 
}
.pagination .first,
.pagination .last {
	display: none; 
}
