.pagination {
    display: flex;
    justify-content: center
}

.pagination .page-item {
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--main-color);
    margin-right: 10px
}

.pagination .page-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--main-color)
}

.pagination .page-item:first-child, .pagination .page-item:last-child {
    /*font-size: 26px*/
}

.pagination .page-item:first-child span, .pagination .page-item:last-child span {
    transform: translateY(-3px)
}

.pagination .page-item:first-child a, .pagination .page-item:last-child a {
    /*transform: translateY(-3px)*/
}

.pagination .active {
    background-color: var(--main-color);
    color: #fff
}

.pagination .disabled {
    color: #a3a3a3
}