@media screen and (max-width: 400px){
    .Loader_Letter { width: 30px; height: 30px; font-size: 20px; }
}

@media screen and (min-width: 400px) and (max-width: 800px){
    .Loader_Letter { width: 40px; height: 40px; font-size: 30px; }
}

@media screen and (min-width: 800px){
    .Loader_Letter { width: 50px; height: 50px; font-size: 40px; }
}

.Loader_Gear {
    background-image: url("/_CONTENT/_SVG/logo_alfa_sm_gear.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.Loader_Text {
    z-index: 2;
    width: 120px;
    height: 120px;
    background-image: url("/_CONTENT/_SVG/logo_alfa_sm_text.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.Loader_Wrapper {
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-0);

    z-index: 99999;
}

.Loader_Scene {
    width: 100%;
    height: 5em;
    padding: 1em;



    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.Loader_Letter {
    color: #FFFFFF;
    border: 1px solid var(--c-4);
    border-radius: 5px;
    background: var(--c-3);
    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-box-shadow: 0 0 5px 0 var(--c-4) inset;
    -moz-box-shadow: 0 0 5px 0 var(--c-4) inset;
    box-shadow: 0 0 5px 0 var(--c-4) inset;

    animation-fill-mode: both;
    z-index: 2;
}


@-webkit-keyframes rotating /* Safari and Chrome */ {
    0% {
        -webkit-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    50% {
        -webkit-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    100% {
        -webkit-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}
@keyframes rotating {
    0% {
        -ms-transform: rotateX(-90deg);
        -moz-transform: rotateX(-90deg);
        -webkit-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    50% {
        -ms-transform: rotateX(-90deg);
        -moz-transform: rotateX(-90deg);
        -webkit-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    100% {
        -ms-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}

.rotating1 {
    -webkit-animation: rotating .75s linear;
    -moz-animation: rotating .75s linear;
    -ms-animation: rotating .75s linear;
    -o-animation: rotating .75s linear;
    animation: rotating .75s linear;
}

.rotating2 {
    -webkit-animation: rotating .5s linear;
    -moz-animation: rotating .5s linear;
    -ms-animation: rotating .5s linear;
    -o-animation: rotating .5s linear;
    animation: rotating .5s linear;
}

.rotating3 {
    -webkit-animation: rotating .75s linear;
    -moz-animation: rotating .75s linear;
    -ms-animation: rotating .75s linear;
    -o-animation: rotating .75s linear;
    animation: rotating .75s linear;
}

.rotating4 {
    -webkit-animation: rotating 1s linear;
    -moz-animation: rotating 1s linear;
    -ms-animation: rotating 1s linear;
    -o-animation: rotating 1s linear;
    animation: rotating 1s linear;
}

.rotating5 {
    -webkit-animation: rotating 1.25s linear;
    -moz-animation: rotating 1.25s linear;
    -ms-animation: rotating 1.25s linear;
    -o-animation: rotating 1.25s linear;
    animation: rotating 1.25s linear;
}

.rotating6 {
    -webkit-animation: rotating 1.5s linear;
    -moz-animation: rotating 1.5s linear;
    -ms-animation: rotating 1.5s linear;
    -o-animation: rotating 1.5s linear;
    animation: rotating 1.5s linear;
}

.rotating7 {
    -webkit-animation: rotating 1.75s linear;
    -moz-animation: rotating 1.75s linear;
    -ms-animation: rotating 1.75s linear;
    -o-animation: rotating 1.75s linear;
    animation: rotating 1.75s linear;
}

.rotating8 {
    -webkit-animation: rotating 2s linear;
    -moz-animation: rotating 2s linear;
    -ms-animation: rotating 2s linear;
    -o-animation: rotating 2s linear;
    animation: rotating 2s linear;
}


@-webkit-keyframes spin1 {
    0% { -webkit-transform: rotate(0deg);}
    100% { -webkit-transform: rotate(360deg);}
}
.spin1
{
    -webkit-animation: spin1 10s infinite linear;
    -moz-animation: spin1 10s infinite linear;
    -o-animation: spin1 10s infinite linear;
    -ms-animation: spin1 10s infinite linear;
    animation: spin1 10s infinite linear;
    display: block;
}

.Loader_Additional {
    width: 250px;
    height: 250px;
    position: absolute;
    top: calc(50% - 125px);

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.Loader_Additional_Half {
    width: 350px;
    height: calc(100px / 2 + 100px);
    border-top: 1px solid var(--c-4);
    border-bottom: 1px solid var(--c-4);
    position: absolute;
    top: calc(50% - 75px);
    z-index: 1;
    background: #FFFFFF;
}

.Loader_Additional >svg {
    width: 250px;
    height: 250px;
}