.page-item {
	border-radius: 0;
}
.page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #4d4d4d;
    border: 1px solid transparent;
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.page-item .page-link.active {
	background-color: #98a6b2;
    color: #fff;
    border-radius: 50%;
}
.page-item .page-link:hover {
	background-color: #fff;
	border:1px solid #fff;
	color: #98a6b2;
}

@media (max-width: 575px) {
    .page-link {
        width: 25px;
        height: 25px;
        line-height: .6;
        font-size: 16px;
        padding: .5rem .2rem;
    }
}
@media (max-width: 414px) {
    .paginat ul {
        margin: auto;
    }
}