
.pagenav a {
    width: 46px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #9D9D9D;
    text-decoration: none;
}


.pagenav .next-page {
    width: 36px;
    height: 36px;
    background: #EA2127 url(/local/libs/css/arr_r.svg) center no-repeat;
    display: inline-block;
    transition: 0.3s;
}

.pagenav .next-page:hover {
    background-color: #C70006;
}

.pagenav .prev-page {
    width: 36px;
    height: 36px;
    background: #EA2127 url(/local/libs/css/arr_r.svg) center no-repeat;
    transform: rotate(180deg);
    display: inline-block;
    transition: 0.3s;
}
.pagenav .prev-page:hover {
    background-color: #C70006;
}

.pagenav span {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.pagenav {
    margin: 30px 0;
}

@media (max-width: 768px){
    .pagenav a,
    .pagenav span {
        font-size: 14px;
        line-height: 17px;
    }
}