.wrapper__loading {
    align-items: center;
    background-color: #0B061B;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.wrapper__loading:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(/img/main_menu-background.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 110px;
    width: 140%;
    height: 300px;
    mix-blend-mode: soft-light;
    background-repeat: no-repeat;
    z-index: 0;
}

.loading__game-spinner {
    border-top: 5px solid var(--bg-primary-opacity);
    border: 5px solid var(--bg-primary-opacity);
    border-top-color: var(--bg-primary)
}

.loading__container {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100vh;
    justify-content: center;
    width: 100vw;
    z-index: 1;
}

.loading__container-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.loading__container-logo--img {
    width: 90px;
    height: 90px;
    position: relative;
}

.loading__container-logo--img:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px 0px 40px 12px #fff;
    width: 0px;
    height: 0px;
}

.loading__container-logo--img:after {
    content: '';
    position: absolute;
    bottom: 33px;
    left: 10px;
    box-shadow: 0px 0px 45px 8px #fff;
    width: 0px;
    height: 0px;
}

.loading__container-logo--img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.loading__container-logo--text {
    color: var(--bg-page-primary);
    font-family: var(--fontfamily-primary);
    font-weight: 600;
    font-size: 1.6rem;
}

.loading__container-status--bar {
    background-color: #2A1E4F;
    border-radius: 2px;
    height: 3px;
    margin-top: 10px;
    overflow: hidden;
    width: 140px;
}

.loading__statusbar {
    background-color: #8761F4;
    height: 100%;
    transition: width .4s ease
}

.loading__container-status--text {
    color: var(--text-color-gray-light);
    font-size: 0.875rem;
    font-weight: 300;
}

.loading__game-spinner {
    animation: spin 1s linear infinite;
    border: 5px solid rgba(117,64,240,.1);
    border-radius: 50%;
    border-top-color: #7540f0;
    height: 50px;
    width: 50px
}

.unknown__platform {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center
}

.unknown__platform-top {
    color: #fff;
    font-family: var(--fontfamily-primary);
    font-size: 2rem;
    font-weight: 600
}

.unknown__platform-img {
    align-items: center;
    display: flex;
    height: 70vw;
    justify-content: center;
    max-height: 200px;
    max-width: 200px;
    padding: 5px;
    width: 70vw
}

.unknown__platform-img img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.unknown__platform-bot {
    background: none;
    border: none;
    color: #fff;
    font-family: var(--fontfamily-primary);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase
}

.error__loading {
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 1;
    width: 100%;
    align-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0px 25px;
}


.error__loading-img {
    align-items: center;
    display: flex;
    justify-content: center;
    z-index: 1;
    width: 80%;
    position: relative;
    background: #0a061c;
    transform: rotate(-5deg);
    z-index: -1;
}

.error__loading-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: contain;
    mix-blend-mode: lighten;
    position: relative;
    -webkit-mask: linear-gradient(180deg, #ffffff 90%, transparent 100%);
            mask: linear-gradient(180deg, #ffffff 90%, transparent 100%);
}

.error__loading-img:before,
.error__loading-img:after{
    content: "";
    mix-blend-mode: plus-lighter;
    position: absolute;
    border-radius: 100%;
    z-index: 1;
}

.error__loading-img:before {
    background: rgb(255 255 255 / 75%);
    bottom: 39%;
    left: 9%;
    width: 30px;
    height: 30px;
    filter: blur(27px);
}

.error__loading-img:after {
    background: rgb(151 130 255 / 95%);
    top: 30%;
    right: 20%;
    width: 45px;
    height: 70px;
    filter: blur(19px);
}

.error__loading-label {
    color: var(--text-color-white);
    font-size: 1.725rem;
    font-weight: 500;
    font-family: var(--fontfamily-primary);
    margin-top: -20px;
}

.error__loading-desc {
    color: var(--text-color-gray-light);
    font-size: 0.925rem;
    font-weight: 300;
    text-align: center
}




.loading__container-status--version {
    color: var(--text-color-gray-light);
    font-size: 0.775rem;
    font-weight: 400;
    position: absolute;
    bottom: 40px;
}



