.pagination {
    display: table;
    margin: 1rem auto 3rem;
    border-radius:.25rem;
    overflow: hidden;
    border: 1px solid var(--Stroke-Primary);
    border-width: 1px .5px 1px .5px;
}
.pagination a {
    border: 0.5px solid var(--Stroke-Primary);
    border-width: 0 .5px 0 .5px;
    background: var(--Background-Secondary);
    color: #fff;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: .875rem;
    font-weight: 500;
    float: left;
    transition: all .5s;
}
.pagination a.th_pg_previous i, .pagination a.th_pg_next i {
    font-size: .725rem;
    line-height: inherit;
}
.pagination a:hover {
    color: #fff;
    background-color: var(--Background-Primary);
}
a.th_pg_current {
    color:var(--Background-Primary);
    background-color: #fff;
}
@media only screen and (max-width: 767px) {
}
@media only screen and (min-width: 768px) {
}
