:root {
    --app-height: 100%;
    --app-width: 100%;
    --nav-height: 0px;
    --slot-studio-bar-height: 0px;
    --progressives-scale: 1;
}

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: calc(var(--nav-height) + var(--slot-studio-bar-height));
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: auto;
    height: calc(var(--app-height, 100%) - var(--nav-height) - var(--slot-studio-bar-height));
    width: var(--app-width, 100%);
    margin: 0;
    overflow: hidden;
    border-width: "0px";
}

.noScroll {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.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;
}

#slotStudioBar {
    display: flex;
    width: 100vw;
    height: var(--slot-studio-bar-height);
    color: white;
    background-color: #211C39;
    font-size: 2.6vh;
    position: absolute;
    z-index: 2;
    justify-content: space-between;
    user-select: none;
    touch-action: none;
}

#slotStudioBackContainer {
    cursor: pointer;
}

#slotStudioGameImage {
    height: 4vh;
    max-width: 40vw;
    object-fit: contain;
    margin-right: 1vw;
    margin-top: 1.5vh;
}

#slotStudioLogo {
    height: 4vh;
    max-width: 40vw;
    margin-left: 3.2vh;
    margin-top: 3vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#slotStudioLogo.holidayHits {
    height: 2.5vh;
    margin-left: 4.7vh;
    margin-top: 3.3vh;
}

#slotStudioBackToText {
    position: absolute;
    font-size: 1.8vh;
    top: 1.3vh;
    left: 3.4vh;
    font-family: NotoSans, sans-serif;
    font-weight: bold;
}

#slotStudioBackTriangle {
    position: absolute;
    margin-left: 1.4vh;
    top: 2.1vh;
    width: 3vh;
    height: 3vh;
    background-image: linear-gradient(45deg, white 0%, white 50%, transparent 51%);
    transform: scaleX(0.6) rotate(45deg);
}

@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;
    }
    #slotStudioBar {
        width: calc(var(--app-width) - var(--progressive-container-width, 0px) * var(--progressives-scale, 0));
        left: calc(var(--progressive-container-width, 0px) * var(--progressives-scale));
    }
}