#spbi-preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.spbi-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0A009A;
    border-radius: 50%;
    animation: spbi-spin 1s linear infinite;
}

@keyframes spbi-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
