/* _content/WireCrafters.OSC.WebApp/Components/LoadingComponent.razor.rz.scp.css */
.ring[b-a3mvbqk3et] {
    position: fixed;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for element's own dimensions */
    width: 120px;
    height: 120px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 120px; /* Matches height for perfect vertical centering of text */
    font-family: sans-serif;
    font-size: 16px;
    color: green;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #b51f2a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.ring[b-a3mvbqk3et]:before {
    content: '';
    position: absolute;
    top: 0; /* Align with the top of the parent */
    left: 0; /* Align with the left of the parent */
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid #b51f2a;
    border-right: 2px solid #b51f2a;
    border-radius: 50%;
    animation: animateC-b-a3mvbqk3et 2s linear infinite;
}

span[b-a3mvbqk3et] {
    display: block;
    position: absolute;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    width: 50%;
    height: 4px;
    background: transparent;
    transform: translate(-50%, -50%) rotate(0deg); /* Center and prepare for rotation */
    transform-origin: left;
    animation: animate-b-a3mvbqk3et 2s linear infinite;
}

span[b-a3mvbqk3et]:before {
    content: '';
    position: absolute;
    top: 50%; /* Center vertically within the span */
    left: 100%; /* Align to the right edge of the span */
    transform: translate(-50%, -50%); /* Center the pseudo-element */
    width: 16px;
    height: 24px;
    border-radius: 75%;
    background: #b51f2a;
    box-shadow: 0 0 20px #b51f2a;
}

@keyframes animateC-b-a3mvbqk3et {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-b-a3mvbqk3et {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}
