:root {
    --app-height: 100%;
	--app-width: 100%;
    --nav-height: 0px;
}

body
{
	margin: 0px;
	background-color: #141415;
	height: var(--app-height, 100%);
	width: var(--app-width, 100%);
}

/* Fake the H5C navBar */
#navBar {
    width: 100%;
    height: var(--nav-height);
    background-color: #25056B;
    color: white;
    align-content: flex-end;
    font-size: 32px;
    display: flex;
    justify-content: center;
}

#dimQuery{
	position: absolute;
	height: 100vh;
	width: 100vw;
}

#gameIframe
{
	background-color: #141415;
	position: fixed;
	top: var(--nav-height);
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: auto;
	height: calc(var(--app-height, 100%) - var(--nav-height));
	width: var(--app-width, 100%);
	margin: 0;
	overflow: hidden;
    border-width: "0px";
}

.noScroll {
	overflow: hidden;
}

.hidden {
	display: none;
}

.transparent {
    opacity: 0%;
}

/* Full Screen Prompts */

#FSModal {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    overflow: auto;
    font-family: NotoSans, sans-serif;
    font-size: 24px;
    text-align: center;
    z-index: 30;
}

.dragVisible {
    width: 100%;
}

.dragHidden {
    width: 1px;
}

.dragBehind {
    z-index: -1 !important;
}

@-webkit-keyframes draganimL {
    0% {
        bottom: 0%;
    }
    100% {
        bottom: 60%;
    }
}

@keyframes draganimL {
    0% {
        bottom: 0%;
    }
    100% {
        bottom: 60%;
    }
}

@-webkit-keyframes draganimP {
    0% {
        bottom: 10%;
    }
    100% {
        bottom: 40%;
    }
}

@keyframes draganimP {
    0% {
        bottom: 10%;
    }
    100% {
        bottom: 40%;
    }
}

#portraitPrompt {
    display: none;
}

@media screen and (orientation: landscape) {
    #portraitPrompt {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 1);
        z-index: 7;
    }
    #portraitPromptImg {
        top: 58%;
        left: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        height: 40%;
    }
    #portraitPromptTxt {
        position: absolute;
        width: 100%;
        height: 30%;
        top: 9%;
        left: 0%;
        font-weight: bold;
        color: #ffffff;
        -webkit-text-stroke-width: 0px;
        font-family: NotoSans, sans-serif;
        text-align: center;
        font-size: large;
    }
}