
  :root{
    --primary-text: #011627;
  --spinner-bg: #e5e7eb;
  --spinner-top: #ed184f;
  }

body.processing-active {
  overflow: hidden; 
}

.processing-page {
    position: fixed;
    z-index: 99999;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

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

    background: #ffffff;
    color: var(--primary-text);
    text-align: center;

    .processing-box {
        max-width: 420px;
        width: 90%;
        padding: 0;
    }

    .processing-logo {
        width: 120px;
        margin: 0 auto 25px;
        display: block;
    }

    .processing-title {
        margin-top:40px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .processing-text {
        font-size: 14px;
        color: #3B5068;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .processing-spinner {
        width: 49px;
        height: 49px;
        border: 10px solid var(--spinner-bg);
        border-top-color: var(--spinner-top);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto;
    }
}

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