﻿.unity-container.desktop {
    width: 100%; /* Растягиваем на всю ширину */
    height: 100%; /* Растягиваем на всю высоту */
    position: absolute;
    top: 0;
    left: 0;
    transform: none; /* Убираем центрирование */
}

.unity-container.handheld {
    height: 100%;
    width: 100%;
}


html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Полностью скрываем скроллбары */
    margin: 0; /* Убираем возможные отступы */
    padding: 0;
}

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#unity-canvas{
    height: 100%;
    width: 100%;
}

#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('../img/progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('../img/progress-bar-full-dark.png') no-repeat center }
