﻿/* This css file is applied before styles.scss loaded */
body
{
    margin: 0;
}
.loading-container
{
    position: fixed;
    z-index: 2999;
    display: flex;
    width: 100vw;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    transition: opacity .8s ease;
    pointer-events: none;
    overflow: hidden;
    background: #141414;;
}
.loading-container::after
{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 248px;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(114,135,0,.05) 69.27%,rgba(215,255,0,.07) 93.23%,rgba(215,255,0,.1) 100%);
}
@media(min-width: 768px)
{
    .loading-container::after
    {
        height: 395px;
    }
}/* stylelint-disable */
stb-root.user-checked+.loading-container
{
    opacity: 0;
}/* stylelint-enable *//* Hide Google reCAPTCHA badge */
.grecaptcha-badge
{
    visibility: hidden;
}