html{
    position:relative;
    display:flex;
    height:100%
}
body {
    position:relative;
    display:flex;
    justify-content:center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color:#202226;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.game-wrapper {
    position:relative;
    width:0;
    height:0;
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:center;
    overflow:hidden;
    box-shadow:0 0 15px 3px #000
}

.game {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
}

.webgl-content {
    border: none;
    bottom: 30%;
    height: 100vh;
    padding: 0;
}

#unityContainerCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

#logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
}

.unityContainer {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: no-repeat center url(../Web_bg.webp);
    background-size: cover;
}

.progress {
    position: absolute;

    left: 0;
    right: 0;
    margin-inline: auto;
    width: 36vh;
    top: 85%;
}


.amount_container {
    position: relative;
    height: 4vh;
    background: url(../TemplateData/progress-bar-empty-dark.webp) center no-repeat;
    background-size: 100% 100%;


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

.linear_progress_root {
    position: relative;
    width: 100%;
    height: 3vh;
    border-radius: 100px;
    overflow: hidden;

    transform-origin: left;
    margin: 0 0.5vh 0 0.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linear_progress_bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    transition: transform 400ms linear;
    transform-origin: left;

    background-image: url(../TemplateData/progress-bar-full-dark.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
