.pagination-list {
	list-style: none;
	display: flex;
	padding: 0;
	margin: 0;
}

.pagination-list__link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	/* border: 1px solid var(--ui-border); */
	border: 1px solid #9f886a;
	border-radius: 4px;
	text-decoration: none;
	color: #504d48;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	margin: 0 5px;
}

span.pagination-list__link {
	/* background: #E9E9E9;
	border-color: #E9E9E9; */
	background: #ffffff;
	border-color: #9f886a;
}

.pagination-list__item--active .pagination-list__link {
	/* background: var(--ui-bg-active);
	border-color: var(--ui-bg-active);
	color: var(--ui-color-active); */
	background: #9f886a;
	border-color: #9f886a;
	color: #ffffff;
}

.pagination-list__item svg {
	width: 7px;
}

.pagination {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.pagination-more {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F3F8FE;
	border: 1px solid #DCEAFD;
	border-radius: 4px;
	padding: 0 25px;
	text-decoration: none;
	color: #414042;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}


@media (max-width: 767px) {
	.pagination {
		flex-wrap: wrap;
		justify-content: center;
	}

	.pagination-more {
		width: 100%;
		max-width: 335px;
		margin-bottom: 10px;
	}

	.pagination-list {
		width: 100%;
		justify-content: center;
	}
}