#paginationList {
    padding: 0;
    margin: 0;
    display: inline;
    list-style-type: none;
}

.pageSelector {
    display: inline-block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background-color: gray;
    text-align: center;
    cursor: pointer;
}

.remove {
    float: right;
    color: red;
    cursor: pointer;
    font-size: 18px;
}

.gfTitle {
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
}

#filter h4.gfButton {
    padding: 22px 10px 22px 21px;
    font-weight: 600;
    text-transform: none;
    font-size: 25px;
}

#filter h4.gfButton::after {
    content: none;
    /* Removes the button */
    display: none;
    /* Hides the button */
}

.ui-slider-range {
    background-color: red;
    /* Set range color */
}

.gf-spinner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.gf-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: gf-spin 0.7s linear infinite;
}

@keyframes gf-spin {
    to { transform: rotate(360deg); }
}