.listing-wrapper.results-loading .e-filter-item {
    opacity: 0.7;
    pointer-events: none;
}   

.ov-hidden {
    overflow: hidden !important;
}

/* Skeleton Loader */

.filter-count.skeleton-loader {
    display: inline-block;
    width: 50px;
    /* Adjust width as needed */
    height: 1em;
    background-color: #ddd;
    animation: pulse 1.5s infinite ease-in-out;
    border-radius: 4px;
    /* Optional: to give it rounded corners */
}

@keyframes pulse {
    0% {
        background-color: #ddd;
    }
    50% {
        background-color: #ccc;
    }
    100% {
        background-color: #ddd;
    }
}

.search-submit {
    display: none !important;
}