body {
    padding: 0;
    margin: 0;
    line-height: 0;
    user-select: none;
}

#unity-container {
    position: absolute;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 95%), url("repeating-icons.webp");
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#unity-container.unity-mobile {
    width: 100%;
    height: 100%;
}

#unity-canvas {
    background: #000000;
    margin: 0px;
    border: none;
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
}

#unsupported-browser-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
}

.unsupported-browser-message {
    background-color: #222222;
    padding: 40px;
    padding-bottom: 20px;
    border-radius: 5px;
    border: solid white 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#unsupported-browser-text {
    margin: 0;
    line-height: 1.5em;
    user-select: text;
}

#unsupported-browser-text a {
    color: white;
}

.unsupported-browser-message button {
    margin-top: 16px;
    justify-self: flex-end;
}

#unity-loading-screen {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    height: 75%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#orderless-logo {
    width: 500px;
}

#blindtree-logo {
    width: 200px;
}

#progress-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.funny-dance {
    /* height: 32px; */
    image-rendering: pixelated;
}

#unity-progress-bar-empty,
#unity-progress-bar-full {
    height: 20px;
    align-self: flex-end;
    padding-bottom: 5px;
}

#unity-progress-bar-full {
    position: absolute;
    clip-path: inset(0 100% 0 0);
}

#unity-footer {
    display: flex;
    padding: 5px 10px;
    height: 25px;
    align-content: center;
    background-color: black;
    gap: 16px;
}

.spacer {
    flex-grow: 1;
}

.unity-mobile #unity-footer {
    display: none;
}

#blindtree-small-logo {
    height: 25px;
}

#twitter-social-link {
    height: 25px;
}

#orderless-footer-logo {
    height: 25px;
}

#unity-mute-button {
    border: none;
    background: url('volume-sprite.png') 0 0 no-repeat;
    width: 32px;
    height: 23px;
}

#unity-mute-button.muted {
    background-position: -32px 0px;
}

#unity-fullscreen-button {
    border: none;
    background: url('fullscreen.png') no-repeat center;
    width: 22px;
    height: 22px;
    background-size: contain;
}

.clickable {
    transition: cubic-bezier(0.34, 1.56, 0.64, 1) scale 0.15s;
}

.clickable:hover {
    scale: 110%;
    cursor: pointer;
}

.clickable:active {
    scale: 90%;
}

.clickable:disabled {
    opacity: 50%;
    scale: unset;
    cursor: unset;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
    line-height: normal;
    font-family: Arial, Helvetica, sans-serif;
}
