@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

.pagination-wrapper {
    display: flex;
    width: 100%;
}

.pagination-wrapper .pagination {
    margin: 30px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-wrapper .pagination .page-link {
    border: none;
    padding: 0 10px;
    line-height: 32px;
    height: 40px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    width: auto;
    height: 32px;
    background-color: transparent;
}

.pagination-wrapper .pagination .page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-wrapper .pagination .page-item .page-link.active {
    color: var(--night);
    text-decoration: underline;
    pointer-events: none;
}

.pagination-wrapper .pagination .page-link:hover {
    text-decoration: underline;
}

.pagination-wrapper .pagination .page-link:focus {
    box-shadow: none;
}
