.pagination {
    width: 100%;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 110px;
}

.pagination__list {
    list-style-type: none;
}

.pagination__item {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #E6EBF1;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 500;
    color: #131619;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s linear;
}
.pagination__item.disabled {
    display: none;
}
.pagination__item.active {
    background: #DD1E31;
    border: 1px solid #DD1E31;
    color: #fff;
    cursor: default;
    transition: all 0.3s linear;
}
.pagination__item:hover {
    background: #DD1E31;
    border: 1px solid #DD1E31;
    color: #fff;
}
.pagination__item.next {
    padding: 0;
}
.pagination__item.next:after {
    content: "";
    width: 32px;
    height: 32px;
    background: url(images/arrow-black.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
}
.pagination__item.prev {
    padding: 0;
}
.pagination__item.prev:after {
    content: "";
    width: 32px;
    height: 32px;
    background: url(images/arrow-black.svg);
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    transform: rotate(-180deg);
}