@charset "utf-8";

ul,
li {
	list-style: none;
}

#wp_pager .pages {
	display: flex;
	min-height: auto;
	margin: 40px 0 20px;
	justify-content: center;
	align-items: center;
}

#wp_pager .pages li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 36px;
	overflow: hidden;
	padding: 0;
	margin: 0 4px;
	text-align: center;
	background-color: #f1f1f1;
	color: #333;
	border: 2px solid transparent;
	border-radius: 4px;
	-webkit-transition: .3s all ease;
	-ms-transition: .3s all ease;
	transition: .3s all ease;
}

#wp_pager .pages li a:hover {
	background-color: #226aba;
	color: #fff;
}

#wp_pager .pages li a.pgCurrent {
	font-weight: bold;
	background-color: #fff;
	color: #226aba;
	border: 2px solid #226aba;
}

#wp_pager .pages li a.pgNext {
	width: auto;
	padding: 0 8px;
}