.bg-loader-with-gap-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;

    .bg-loader {
        border: 0.5rem solid rgb(255, 255, 255);
        border-top: 0.5rem solid rgba(80, 76, 76, 0);
        border-radius: 50%;
        width: 3.125rem;
        height: 3.125rem;
        animation: spin 2s linear infinite;
    }

    .bg-loader-inner {
        border: 1px solid rgb(255, 255, 255);
        border-radius: 50%;
        width: 100%;
        height: 100%;
    }

    .bg-loader-text {
        color: whitesmoke;
        padding-top: 1.25rem;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}