/* Pagination */
.wpt-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
}
.wpt-pagination a,
.wpt-pagination span {
    padding: 0;
    margin: 0 5px;
    width: 31px;
    height: 31px;
    font-size: 18px;
    display: flex;
    border-radius: 50%;
    text-decoration: none;
    color: #222!important;
    transition: background-color 0.3s;
    align-items: center;
    justify-content: center;
}
.wpt-pagination a{
    cursor: pointer!important;
}
.wpt-pagination svg {
    width: 13px;
    height: 13px;
}
.wpt-pagination a:hover {
    background-color: #eee;
}
.wpt-pagination .current {
    background-color: #0063B0;
    color: #fff!important;
}



.wpt-pagination.v2 a {
    border: solid 0.08em #DFE3E8;
    border-radius: 3px;
}
.wpt-pagination.v2 .current{
    border-radius: 3px;
}
/* .wpt-pagination.v2 a.prev,
.wpt-pagination.v2 a.next{
    background-color: #0063B0;
    color: #fff!important;
} */