/* Blur filter text on initial page load only until Elasticsearch counts are fetched */
/* .listing-wrapper:not(.filters-ready) .filter-heading .elementor-heading-title, */
.listing-wrapper:not(.filters-ready) .filter-values .e-filter-item {
    color: transparent;
    text-shadow: 0 0 6px rgba(61, 61, 61, 0.75);
    pointer-events: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* .listing-wrapper.filters-ready .filter-heading .elementor-heading-title, */
.listing-wrapper.filters-ready .filter-values .e-filter-item {
    color: inherit;
    text-shadow: none;
    pointer-events: auto;
}

.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;
}