/*------------------
Pagination
----------------------*/
.pagination_outer {
	margin-top: 60px;
	margin-bottom: 70px;
	text-align: left;	
}
.pagination {
	display: inline-block;
}
.pagination > a {
	text-decoration: none;
	display: inline-block;
	margin: 0 5px;
	padding: 8px 11px;
	padding-top: 8px;
	background-color: #d1d9e3;
	color: #4e4f50;
	float: left;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.10em;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;	
}
.pagination > a:hover{
	background-color: #073263;
	color: #fff;	
}
.pagination > .dots{
	background-color: #d1d9e3;
	color: #4e4f50;	
}
.pagination > .page-numbers,
.pagination > .dots{
	width: 42px;
	height: 42px;
	text-align: center;	
}
.pagination > .current{
	background-color: #073263;
	color: #fff;
	padding-top: 6px;
	font-size: 14px;
	font-weight: 400;	
}
.pagination > .prev,
.pagination > .next{
	width: 111px;
	height: 41px;
	text-align: center;
	padding-top: 10px;
	letter-spacing: 0.10em;
}
.pagination > span {
	float: left;
	line-height: 30px;
	padding: 0 10px;
	font-weight: bold;
	background-color: #eee;
	margin: 0 5px;
}

@media(max-width: 480px) {
	.pagination > .page-numbers {
	    width: 35px;
	    height: 35px;
	    text-align: center;
	}
	.pagination > .prev, .pagination > .next{
		width: 100px;
	}
	.pagination > a{
	font-size: 12px;
	}
	.pagination > .current {
	    padding-top: 4px;
	    font-size: 12px;
	}
	.pagination_outer {
	    margin-top: 15px;
	    margin-bottom: 0px;
	    text-align: left;
	}
}