﻿/* ==========================================================================
   SEARCH LOADING OVERLAY
   ========================================================================== */

#mainContentAjaxWrapper.loading-search .search-loading-overlay {
    display: flex !important;
}

.search-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(3px);
}

.search-loading-box {
    min-width: 220px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.search-loading-spinner {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border: 5px solid #e3e3e3;
    border-top-color: #1f4db8;
    border-radius: 50%;
    animation: search-spin 0.85s linear infinite;
}

.search-loading-text {
    margin: 0;
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes search-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
