#pagination{
	margin: 20px auto;
	display: table;
}
.pagination_item{
	height: 25px;
	width: 25px;
	margin-right: 5px;
	float: left;
	text-align: center;
	line-height: 25px;
	color: #000000;
}
#item_active{
	background: #343434;
	color: #FFFFFF;
}
#item_last{margin-right: 0;}
.item_dots{
	border: none;
}
.pagination_item:not(.item_dots):hover{
	background: #686868;
	color: #FFFFFF;
}
#item_previous, #item_next{background: url("../images/icons/chevron.png") no-repeat center center;}
#item_previous:hover, #item_next:hover{background: url("../images/icons/chevron_white.png") no-repeat center center;}
#item_previous{margin-right: 50px;}
#item_next{
	transform: rotate(180deg);
	margin-left: 50px;
}

@media(max-width: 591px){
	#item_previous{margin-right: 1vw;}
	#item_next{margin-left: 1vw;}
}
@media only screen and (max-width: 480px){
	#pagination{
		margin-bottom: 40px;
	}
}
@media(max-width: 400px){
	#item_first, #item_last{display: none;}
}