body {
    margin: 0px;
    padding: 0px;
    position: bottom;
    width: 100%;
    background-size: cover;
    font-style: regular;
    font-family: "Myriad Pro", Myriad, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-image: url("load_screen_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    background-color: #004c3d;
}

/* Apply these rules for all browsers EXCEPT iOS Safari */
@supports not (-webkit-touch-callout: none) {
    body {
        height: 100%;
        height: -webkit-fill-available;
        overflow: hidden;
    }
}

#unity-container {
    position: bottom;
    height: 100%;
    width: 100%;
    height: -webkit-fill-available;
    background-color: #004c3d;
}

#unity-container.unity-desktop {
    position: bottom;
    height: 100%;
    width: 100%;
    height: -webkit-fill-available;
}

#unity-canvas {
    position: bottom;
    height: 100%;
    width: 100%;
}

#unity-fullscreen-button {
    height: 32px;
    width: 32px;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    right: 0px;
    background-color: transparent;
    background-image: url("fullscreen-button-out.png");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    opacity: 0.333;
    padding: 24px;
}

#unity-fullscreen-button:hover {
    opacity: 1.0;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

#unity-loading-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-items: stretch;
    align-content: center;
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior: none;
}

#preloader-fish {
    position: relative;
    background-size: contain;
    width: 50%;
    height: 500px;
    background-image: url("load_screen_fish.png");
    background-repeat: no-repeat;
    background-position: bottom;
}

#preloader-text {
    position: relative;
    background-size: contain;
    width: 50%;
    height: 200px;
    background-image: url("load_screen_text.png");
    background-repeat: no-repeat;
    background-position: top;
}

#unity-progress-bar-empty {
    position: relative;
    width: 350px;
    height: 70px;
    background: url('load_screen_under_filler.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#unity-progress-bar-full {
    position: relative;
    left: 2%;
    height: 70px;
    width: 0%;
    background: url('load_screen_filler.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
}

#load-screen-over {
    position: relative;
    top: -100%;
    width: 350px;
    height: 70px;
    background: url('load_screen_over.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#unity-container.unity-mobile {
    width: 100%;
    height: 100%
}

.unity-mobile #unity-footer {
    display: none
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}

/* Safe zone */
@supports (padding: max(0px)) {
}
