#jackpotBannerLandscape {
    display: none;
    width: calc(100vh * 310 / 1080);
    height: 100vh;
    text-align: center;
    vertical-align: middle;
}

#jackpotBannerPortrait {
    display: none;
    width: 100vw;
    height: calc(100vw * 351 / 1088);
    text-align: center;
    vertical-align: middle;
}

.jackpotCellLandscape {
    padding: 0;
    width: calc(100vh * 310 / 1080);
}

.jackpotCellPortrait {
    padding: 0;
    /* Fixes the last money field trim issue */
    max-width: 10px;
}

.jackpotBackgroundLandscape {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    height: 7vh;
}

.jackpotBackgroundPortrait {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    height: 6.4vw;
}

#jackpotBannerLandscape {
    background-image: url("./../assets/textures/Jackpot/landscape.png");
}

#jackpotBannerPortrait {
    background-image: url("./../assets/textures/Jackpot/portrait.png");
}

.grandJackpotImage {
    background-image: url("./../assets/textures/Jackpot/grand.png");
    background-size: auto 100%;
}

.majorJackpotImage {
    background-image: url("./../assets/textures/Jackpot/major.png");
    background-size: auto 100%;
}

.minorJackpotImage {
    background-image: url("./../assets/textures/Jackpot/minor.png");
    background-size: auto 100%;
}

.miniJackpotImage {
    background-image: url("./../assets/textures/Jackpot/mini.png");
    background-size: auto 100%;
}

.jackpotFrameLandscape {
    background-image: url("./../assets/textures/Jackpot/frame.png");
    background-origin: padding-box;
    background-repeat: no-repeat;
}

.jackpotFramePortrait {
    background-image: url("./../assets/textures/Jackpot/frame.png");
    background-origin: padding-box;
}

/* Game Specific - override at game.css */
.jackpotColor {
    color: #fff;
}

/* Game Specific - override at game.css */
.jackpotFont {
    font-family: "Arial";
}

/* Game Specific - override at game.css */
.jackpotBackgroundColorLandscape {
    background-color: transparent;
}

/* Game Specific - override at game.css */
.jackpotBackgroundColorPortrait {
    background-color: transparent;
}

.jackpotValueLandscape {
    font-size: 4.8vh;
    height: 5.6vh;
    padding-top: 1.5vh;
}

.jackpotValuePortrait {
    font-size: 4.2vw;
    display: table-cell;
    height: 5.6vw;
    padding-top: 1.5vw;
}

@media only screen and (any-pointer: coarse) and (orientation : landscape) {    
    .jackpotBackgroundLandscape {
        height: 4.5vh;
    }
}

body:-webkit-full-screen .jackpotBackgroundLandscape {
    height: 7vh;
}