@charset "utf-8";
.pagination{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: center;
}
.pagination a, .pagination span {
    display: block;
    margin-right: 5px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #c6c6c6;
	color: #bbbcbc;
	width: 25px;
	height: 25px;
	border-radius: 25px;
	line-height: 25px;
	font-weight: bold;
}

.pagination .current {
    color: #2e3e4e;
	border: 1px solid #5a5252;
}

.pagination .current.prev, .pagination .current.next{
	color:#999;
	border-color:#999;
	background:#fff;
}
.pagination a.prev,.pagination a.next{
	display: none;
}
