/* _content/Incenti5.Components.Common.UI/Components/Loader.razor.rz.scp.css */
.loader-container[b-dolrm8st4n] {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 999;
}

.loader[b-dolrm8st4n] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #FF3D00;
    box-sizing: border-box;
    animation: rotation-b-dolrm8st4n 1s linear infinite;
}

.loader[b-dolrm8st4n]::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 4px;
    top: 4px;
    border: 2px solid #FFF;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

@keyframes rotation-b-dolrm8st4n {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
