/* =========================================================
   PROJECTS LOADER
========================================================= */

.projects {
    position: relative;
    min-height: 200px;
}

.projects.is-loading .projects_item {
    display: none;
}

.projects-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.projects-loader img {
    width: 70px;
    height: 70px;
}


/* =========================================================
   FILTERS LOADING STATE
========================================================= */

#search-filters {
    position: relative;
    transition: opacity .2s ease;
}

#search-filters.is-loading {
    opacity: .5;
    pointer-events: none;
}