.custom-pagination {
    gap: 16px;
}

.custom-pagination .page-item .page-link {
    border-radius: 500px;
}

.desktop-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-pagination {
    display: none;
}

.page-link:hover {
    background: unset;
}

.page-link {
    font-size: 14px;
    color: #151515;
}

li.page-item.disabled > a > svg > path {
    stroke: #A3A3A3;
}

.active>.page-link {
    background: #1e4f9e;
    border-color: unset;
}

.disabled>.page-link {
    cursor: not-allowed;
}

li.page-item.disabled > a {
    background: #e5e5e5;
}

@media (max-width: 480px) {
    .mobile-pagination {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .desktop-pagination {
        display: none;
    }
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 0;
}