body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#app-container {
    position: absolute
}

#app-container.app-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#app-container.app-mobile {
    width: 100%;
    height: 100%
}

#app-canvas {
    background: #090909
}

.app-mobile #app-canvas {
    width: 100%;
    height: 100%
}

#app-loading-bar-holder {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #090909;
}

#app-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#app-logo {
    width: 154px;
    height: 130px;
    background: url('app-logo-dark.png') no-repeat center
}

#app-progress-bar-empty {
    width: 100%;
    height: 100%;
    position: fixed;
}

#app-progress-bar-full {
    width: 20%;
    height: 100%;
    background: #000000;
}

#app-footer {
    position: relative
}

.app-mobile #app-footer {
    display: none
}

#app-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

#app-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#app-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center
}

#app-mobile-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}
button:hover, .cursor-pointer {
    cursor: pointer;
}

body.tc-disable-scroll {
  position: static !important;     /* default: static */
  overflow-y: hidden !important;  /* default: visible or auto */
  right: auto !important;
  left: auto !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select, button {
  outline: none;
  box-shadow: none;
}
