/* ============================================================
   SEARCH PROCESSING OVERLAY
   ============================================================ */

.search-processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(15, 23, 42, .44);
    backdrop-filter: blur(4px);
}

.search-processing-overlay.hidden {
    display: none;
}

.search-processing-card {
    width: min(440px, calc(100vw - 32px));

    padding: 38px 34px 34px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 26px 80px rgba(15, 23, 42, .25);

    text-align: center;
}

.search-processing-spinner {
    width: 50px;
    height: 50px;

    margin: 0 auto 22px;

    border: 4px solid #e8edf4;
    border-top-color: var(--brand-blue, #0648aa);

    border-radius: 50%;

    animation:
        reisen-search-spin .85s linear infinite;
}

.search-processing-title {
    margin: 0;

    color: #172033;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.search-processing-message {
    min-height: 44px;

    margin: 13px 0 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.55;

    transition: opacity .2s ease;
}

.search-processing-note {
    margin-top: 18px;

    color: #98a2b3;

    font-size: 11px;
}

@keyframes reisen-search-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {

    .search-processing-card {
        padding: 32px 22px 28px;
    }

    .search-processing-title {
        font-size: 19px;
    }
}
