.pagination-wrapper {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}
.page-numbers {
	display: flex;
	justify-content: center;
	width: 100%;
	gap: 5px;
}
.pagination-wrapper li {
	border: 1px solid #000;
	width: 34px;
	height: 34px;
	font-size: 16px;
	line-height: 34px;
	border-radius: 50%;
	margin: 0;
}
.page-numbers.current {
    color: var(--white);
    background: #000;
    border-radius: 50%;
}
.pagination-wrapper .prev,
.pagination-wrapper .next {
	font-size: 0;
	background: url(../../images/prev-icon.svg) center center no-repeat;
}
.pagination-wrapper .next {
	transform: rotate(180deg);
}