/*#region pagination section*/
.showing-page-from {
    display: flex;
    align-items: center;
}

.filter-col .showing-page-from span,
.filter-col .filter-col-text span,
.filter-col .filter-info {
    font-family: var(--generalFont);
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 141.52%;
    align-items: center;
    color: rgba(70, 78, 95, 0.7);
}

.filter-col .showing-page-from span strong,
.filter-col span strong {
    color: #464e5f;
}

/* .shown-page-number {
    height: 27px;
    background: #ffffff;
    border-radius: 9px;
    outline: none;
    border: none;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--darkBlue);
    margin: 0 8px;
    padding: 2px;
} */

.filter-col.mobil {
    justify-content: center;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.pagination-layout {
    margin-top: 24px;
    margin-bottom: 24px;
}

.first-filter-info {
    border-right: 1px solid #eaeaea;
    width: max-content;
}

@media screen and (max-width: 991px) {
    .pagination-layout {
        margin-top: 0;
        margin-bottom: 0;
    }

    .first-filter-info {
        border-right: unset;
    }
}

/*#endregion pagination section*/

/*#region pagination select*/

/* The container must be positioned relative: */
.custom-pagination-select {
    position: relative;
    /* width: 50px */
}

.custom-pagination-select select {
    display: none;
}

.select-selected {
    background: #FFFFFF;
    border-radius: 9px;
    margin: 0 8px;
    width: 50px;
    height: 30px;
    border: 1px solid #EBEDF3
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    top: 11px;
    right: 14px;
    border: 0;
    font-size: 8px;
    display: inline-block;
    font-family: Ki;
    font-style: normal;
    font-weight: 600;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #15195E;
    padding: 6px;
    cursor: pointer;
    user-select: none;
    background-color: #FFFFFF;
}

.select-items div {
    border-bottom: 1px solid #EBEDF3
}

.select-items div:last-of-type {
    border-bottom: unset;
    border-radius: 0 0 9px 9px;
}

.select-items div:first-of-type {
    border-radius: 9px 9px 0 0;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #FFFFFF;
    top: calc(100% + 4px);
    left: 8px;
    right: 0;
    z-index: 99;
    width: 50px;
    border-radius: 9px;
    border: 1px solid #EBEDF3
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: #f3f7fb !important;
}

.select-items div:active {
    background-color: #EBEDF3 !important;
}

@media screen and (max-width: 991px) {
    .filter-col-text {
        display: flex;
    }

    .custom-pagination-select {
        width: 50px;
        margin-right: 14px;
    }

    .select-selected:after {
        right: 0;
    }
}
/*#endregion pagination select*/