#pagesize {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#pagesize ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#pagesize a,
#pagesize span {
    display: block;
    width: 26px;
	height: 26px;
	border: solid 1px #bfbfbf;
    color: #a5a6a5;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    text-align: center;
    margin: 0 5px;
}

#pagesize a:hover {
    text-decoration: none;
    background-color: #ef8728;
    border: solid 1px #ef8728;
    color: #fff;
}

#pagesize .active {
    background-color: #ef8728;
    border: solid 1px #ef8728;
    color: #fff;
    cursor: default;
}

#pagesize .disabled {
    color: #ccc;
    cursor: default;
}

#pagesize ul li:first-child a,#pagesize ul li:last-child a{
	border:none;
}

@media(max-width: 767px){
	#pagesize{
		margin-top: 4vw;
	}
}