.page-link {
    font-size: 14px;
    font-family: Roboto;
    background-color: transparent;
    border: 0;
    outline: 0;
    transition: all .3s linear;
    border-radius: 0;
    height: 42px;
    align-items: center;
    vertical-align: middle;
    display: flex;
    padding: 1rem;
}

.page-item.active .page-link {
    background-color: var(--grey);
    color: var(--white);
    border: none;
    box-shadow: none;
    transition: all .2s linear;
}

.page-item:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.page-item:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.page-link, .page-link:hover {
    color: var(--fifth);
}

.page-link:hover {
    z-index: 2;
    background-color: var(--white);
    /*border-color: #e0e0e0;*/
}

ul.pagination {
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 0;
}

.card-footer {
    padding: 0.688rem 1.5rem !important;
}
.select-input.form-control[readonly]:not([disabled]) {
    background-color: var(--white);
    border-radius: 0.5rem;
}

.pagination-custom ul.pagination{
    background-color: var(--grey-alpha);

}

.page-link-custom {
    font-size: 16px;
    font-family: Roboto;
    background-color: transparent;
    border-left: solid 1px var(--inactive);
    outline: 0;
    transition: all .3s linear;
    border-radius: 0;
    height: 42px;
    align-items: center;
    vertical-align: middle;
    display: flex;
    padding: 1rem;
}

.page-item.active .page-link-custom {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: none;
    transition: all .2s linear;
}

.page-link-custom, .page-link-custom:hover {
    color: var(--grey);
}

.page-link-custom:hover {
    z-index: 2;
    background-color: var(--white);
}

ul.pagination-custom-new {
    background-color: var(--white);
    border-radius: 0.25rem;
    margin-bottom: 0;
    border: solid 1px var(--inactive);
    display: flex;
    padding-left: 0;
    list-style:none;
}

.page-item-custom .page-link{
    border-left: solid 1px var(--inactive);
    color: var(--grey);
}