/* /Components/Background.razor.rz.scp.css */
.background[b-y8gwl8zh2v] {
    content: "";
    background-attachment: fixed;
    background-size: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
    text-align: center;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
}
/* /Components/LanguagePicker.razor.rz.scp.css */
.languagePicker[b-bs6f0z3ggm] {
    font-size: 1.1vw;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(20vw);
    margin: 1em;
    border-width: 0.1vw;
}

@media (max-width: 1024px) {
    .languagePicker[b-bs6f0z3ggm] {
        transform: scale(0);
        margin: 0;
        padding: 0;
    }
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.background[b-lhr3a50pze] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-content: center;
    text-align: center;
}

.spinner[b-lhr3a50pze] {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    display: inline-block;
    border-top: 0.4vw solid #FFF;
    border-right: 0.4vw solid transparent;
    box-sizing: border-box;
    animation: rotation-b-lhr3a50pze 1s linear infinite;
}

    .spinner[b-lhr3a50pze]::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 4vw;
        height: 4vw;
        border-radius: 50%;
        border-left: 0.4vw solid #FF3D00;
        border-bottom: 0.4vw solid transparent;
        animation: rotation-b-lhr3a50pze 0.5s linear infinite reverse;
    }

@media (max-width: 1024px) {

    .spinner[b-lhr3a50pze] {
        width: 15vw;
        height: 15vw;
        border-left: 0.7vw solid #FF3D00;
        border-bottom: 0.7vw solid transparent;
    }

        .spinner[b-lhr3a50pze]::after {
            width: 15vw;
            height: 15vw;
            border-left: 0.7vw solid #FF3D00;
            border-bottom: 0.7vw solid transparent;
        }
}

@keyframes rotation-b-lhr3a50pze {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
