.bbr-complex-table {
    &__wrapper {
        position: relative;
    }

    &__loading-overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(255, 255, 255, 0.7);
        z-index: 5;
    }

    &__spinner {
        position: sticky;
        top: calc(50vh - 1.5rem);
        margin: 0 auto;
        width: 3rem;
        height: 3rem;
        border: 0.25rem solid hsl(0, 0%, 86%);
        border-top-color: hsl(217, 71%, 53%);
        border-radius: 50%;
        animation: bbr-complex-table-spin 0.6s linear infinite;
    }
}

@keyframes bbr-complex-table-spin {
    to {
        transform: rotate(360deg);
    }
}
