* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    background-image: url('../TemplateData/background.webp');
    display: flex;
    flex-direction: column;
    color: #fff;
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #231F20
}

.container {
    margin-top: 40%;
    margin-left: auto;
    margin-right: auto;
    /* padding: 40px; */
    text-align: center;
    width: 100%;
}

.logo {
    margin-top: 50%;
    width: 80%;
    margin: 10px auto;
}

.status {
    padding-left: 10%;
    padding-right: 15%;
    margin: 25px 0;
    font-size: 20px;
    display: block;
    text-align: left;
}

.progress-bar {
    margin-top: 5px;
    flex-grow: 1;
    height: 12px;
    background: #444;
    border-radius: 10px;
    position: relative;
}

.progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FEBB4A, #F65A31, #9B3076);
    border-radius: 36px;
    transition: width 1s ease-in-out;
}

.checkmark-enabled {
    background-image: url('../TemplateData/check-enabled.svg');
    background-size: contain;
    /* или cover, в зависимости от того, как хотите масштабировать */
    background-repeat: no-repeat;
    background-position: center;
    /* размещение картинки по центру */
}

.checkmark-disabled {
    background-image: url('../TemplateData/check-disabled.svg');
    background-size: contain;
    /* или cover, в зависимости от того, как хотите масштабировать */
    background-repeat: no-repeat;
    background-position: center;
    /* размещение картинки по центру */
}

.checkmark {
    width: 20px;
    /* Устанавливаем ширину */
    height: 20px;
    /* Устанавливаем высоту */
    position: absolute;
    right: -10%;
    display: inline-block;
    transform: translateY(-80%);
}

.bottom-text {
    font-size: 22px;
    margin-top: 40%;
}

.loading-dots::after {
    content: '';
    animation: dots 2s infinite;
    /* Анимация длится 3 секунды */
}

@keyframes dots {

    0%,
    16.66% {
        content: '';
    }

    33.33%,
    50% {
        content: '.';
    }

    66.66%,
    83.33% {
        content: '..';
    }

    100% {
        content: '...';
    }
}