﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #0C1028;
}

.lds-ring {
    position: absolute !important;
    bottom: 55px;
    right: 55px;
    pointer-events: none;
    user-select: none;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fa2;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #F4835D transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#unity-canvas {
    width: 100%;
    height: 100%;
    cursor: default;
}

#right-panel {
    width: 14.6%;
    height: 100%;
    background-color: #161C32;
    border-right: 2px solid #323549;
    position: relative;
}

#left-panel {
    left: 14.6%;
    width: 85%;
    height: 100%;
    position: absolute;
}

.template {
    position: absolute;
    background-color: #323548;
    border-radius: 10px;
}

#logo {

    left: 10%;
    width: 80%;
    height: 40px;
    top: 2.5%;
}

#menu {

    left: 10%;
    width: 80%;
    height: 300px;
    top: 10%;
}

#bottom {

    left: 10%;
    width: 80%;
    height: 100px;
    bottom: 2%;
}
     
