.pagination {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: block;
    padding: 7px 7px 3px 7px;
    color: #FF4438;
    background-color: #fff;
    border: 0px solid #dee2e6;
    border-radius: 5px;
    text-decoration: none;

    font-family: "Graphik Web", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-stretch: 100%;
    font-style: normal;
    font-weight: 400;
}

.page-item.active .page-link {
    background-color: #5866F6;
    color: #fff;
}

.page-item.active:hover{
    pointer-events: none;
}

.page-item.disabled .page-link {
    pointer-events: none;
    color: #8A99A0;
    border: 0px;
}

#search ul a:not([aria-label]) {
    display: none;
}

#search ul span.page-link {
    display: none;
}

#search ul li:first-child span{
    display: block;
}

/* Select the last li in the ul */
#search ul li:last-child span{
    display: block;
}