body {
	background-color: #fff;
}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.pagination > a,
.pagination > span {
	background-color: #fff;
	color: #06c;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	margin: 0 -1px 5px;
	min-width: 20px;
	padding: 0 10px;
	height: 40px;
	text-decoration: none;
	border: solid 1px #ddd;
	position: relative;
	font-family: Helvetica, Arial, sans-serif;
}
.pagination > span {
	pointer-events: none;
}
.pagination svg {
	height: 24px;
	width: 24px;
}
.pagination > a:hover {
	background-color: #f7f7f7;
}
.pagination > a.page-active {
	background-color: #07639d;
	color: #fff;
	border: solid 1px #07639d;
}
.pagination > a:first-child {
	border-radius: 5px 0 0 5px;
}
.pagination > a:last-child {
	border-radius: 0 5px 5px 0;
}