.skart-processing-loader {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, .42);
        backdrop-filter: blur(1px);
    }

    .skart-processing-spinner {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 38px;
        height: 38px;
        margin: -19px 0 0 -19px;
        border: 3px solid rgba(254, 42, 28, .18);
        border-top-color: #FE2A1C;
        border-radius: 50%;
        animation: skart-processing-spin .7s linear infinite;
    }

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