.dropdown-city-container,
.locality-container {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.scaletoggle,
.displayBlock {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* .listing-over-listing {
    height: 100%;
    width: 100%;
    background-color: #00000065;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    scrollbar-width: 0;
    transform: scale(0);

}

.listing-over-listing::-webkit-scrollbar {
    display: none;
} */



#loader {
    position: absolute;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 50px;
    height: 50px;
}


#loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E86822;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.access .blur {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}


.access {
    position: relative;
    z-index: 10;
}


#properties-section {
    position: relative;
    z-index: 5;
}


.blur {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}


.popup-message {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E86822;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    z-index: 1000;
    display: none;
    text-align: center;
}


.inner-width {
    width: 100%;
}

.city-container {
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.city-dropdown {
    display: flex;
    gap: 20px;
    width: 30%;
    text-align: center;
    padding: 12px 0px 12px 25px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.city-dropdown span {
    color: #E86822;
}


button.search-btn {
    width: 15%;
    border-radius: 50px;
    margin: 5px;
    border: 1px solid #00000020;
    cursor: pointer;
    height: 45px;
}

.dropdown-city-container {
    position: absolute;
    top: 105%;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    max-height: 500px;
    width: 680px;
    z-index: 100;
}


.dropdown-city-list {
    height: 460px;
    overflow-y: scroll;
}


.dropdown-items {
    gap: 15px;
    flex-wrap: wrap;
}

.dropdown-city-search-card {
    width: 100%;
    border-radius: 50px;
    box-shadow: -1px 7px 27px #0000001A;
    padding: 0 15px;
}


.dropdown-city-search-card.d-flex {
    align-items: center;
}



input.dropdown-city-search-input {
    width: 88%;
    outline: 0;
    border: 0;
    padding: 10px;
}


.dropdown-city-icon {
    width: 6%;
}


i.fa-regular.fa-location-crosshairs.fa-fw {
    width: 100%;
    text-align: end;
}

.dropdown-city-box.d-flex {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 0 15px 0;
}


.city-card.d-flex.active {
    border-color: #e87d22fa;
}



.city-card.d-flex {
    width: 180px;
    border-radius: 8px;
    box-shadow: 0px 0px 20px #00000020;
    padding: 15px;
    display: flex;
    gap: 12px;
    border: 1px solid #fff;
    transition: all 0.3s;
    align-items: center;
    cursor: pointer !important;
}

img.city-image {
    width: 45px;
    height: 30px;
    object-fit: contain;
}


.city-name {
    font-size: 16px;
    font-weight: 600;
}