section.search-filters {
    background: var(--secondary-color); 
    box-shadow: 3px 3px 20px #1e1e1e30;
    overflow-x: scroll;
    /* border-radius: 2rem; */
    /* display: block !important; */
    position: fixed;
    display: block;
    right:-400px; 
    top:0;  
    width: 400px; 
    max-width: 90%;
    height: 100%; 
    z-index: 30000;
    transition: all .3s ease-in-out;
    margin: 0 !important; 
}

.search-filters .container {
    width: 100% !important; 
    padding: 1rem;
}

.search-filters .section__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

#search-filter-close-btn i {
    color: #1e1e1e;
    cursor: pointer;
}

.overlay-layer {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%; 
    background: #1e1e1e20; 
    height: 100%;
    z-index: 20000;
    display: none;
}


.search-filters .field {
    margin-bottom: 1rem;
}




.search-filters select {
    min-height: 40px ;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 0.5em;
    font-family: inherit;
    font-size: inherit;
line-height: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    color: black !important;
}

select::-ms-expand {
    display: none;
}


.fields-wrapper .field__content .grid {
    display: grid;
    border: 1px solid #1e1e1e30;
}

.grid.rent_type {
    grid-template-columns: repeat(3, 1fr);
}

.grid.purpose {
    grid-template-columns: repeat(3, 1fr);
}

.grid.purpose .item:first-child {
    color: var(--secondary-color); 
    background: var(--primary-color); 
}

.grid.lounges-count {
    grid-template-columns: repeat(6, 1fr);
}

.grid.bathroom-count {
    grid-template-columns: repeat(5, 1fr);
}

.grid.bathroom-count .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color); 
}

.grid.lounges-count .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color); 
}

.grid.roomsCount {
    grid-template-columns: repeat(6, 1fr);
}

.grid.families-single {
    grid-template-columns: repeat(3, 1fr);
}

.grid.floor {
    grid-template-columns: repeat(6, 1fr);
}
.grid.floor .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color);
}

.grid.families-single .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color);
}

.grid.roomsCount .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color); 
}

.fields-wrapper .field__content .item {
    padding: .75rem; 
    text-align: center;
    cursor: pointer; 
}

.fields-wrapper .field__content .grid.rent_type .item:nth-child(2) {
    border-right: 1px solid #1e1e1e30;
    border-left: 1px solid #1e1e1e30;
}

.fields-wrapper .grid.rent_type .item:first-child {
    background: var(--primary-color); 
    color: var(--secondary-color); 
}

.field input {
    width: 100%; 
    padding: .5rem 1rem; 
}


#reset-btn {
    text-decoration: underline;
    color: var(--primary-color); 
}

.field.flex { 
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.field.flex .field__content {
    flex:  1;
}


.field.flex .field__content input[type='checkbox'] {
    width: 16px; 
    height: 16px; 
    float: left; 
}


/* Input Range Styling */
input[name=street-width-input] { 
    -webkit-appearance: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin:0; 
}

input[name=street-width-input]::-webkit-slider-thumb { 

    appearance: None;
    background: var(--primary-color) !important;
    width: 20px; 
    height: 20px;
    border-radius: 50%;
}



.item.property .property__title {
    /* color: var(--primary-color) !important;  */
    text-decoration: none !important;
    font-weight: bold;
    font-size: 0.9rem;
    color: black;

}

.property__summary {
    display: flex;
    justify-content: flex-start;
    column-gap: 1rem;
    font-size: .85rem;
}



.property__summary i { 
    color: #1e1e1e80;
}

.property__summary span { 
    font-weight: 500;
    color: #000;
}

.property__number {
    position: absolute;
    z-index: 5000;
    top: 0.20rem;
    left: 0.20rem;
    font-size: 0.70rem;
    background: var(--secondary-color);
    padding: 0.2rem .4rem;
    border-radius: 2rem;
    font-weight: 600;
    padding-bottom: .1rem ;
}

.property__number span {
    font-weight: lighter;
}

.property__cover_img {
    position: relative;
}

.property__cover_img .rented, .property__cover_img .sold {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%) scale(.6);
}

#slider-btn-all {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.swiper-slide.fill a {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color);
}

.custom-swiper {
    display: flex;
    overflow-x: scroll;
    column-gap: 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: .5rem 1rem;
}

.custom-swiper .swiper-slide {
    cursor: pointer;
    user-select: none;
}



#close-window-btn {
    text-decoration: underline;
    cursor: pointer; 
}

.pagination .container {
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: center;
}