/* OVERRIDES */

.jpt-on:not(.loaded) #root {
    overflow: hidden;
}

.jpt-on .screen {
    top: 40px;
    height: 720px;
    overflow: visible;
}

.jpt-on .gamble ~ .jackpotMiniGame,
.jpt-on .gamble ~ .settings,
.jpt-on .gamble ~ .help,
.jpt-on .gamble ~ .paytable,
.jpt-on .gamble ~ .similarGames {
    z-index: 2;
}

.jpt-on .gamble._disabled ~ .jackpotMiniGame,
.jpt-on .gamble._disabled ~ .settings,
.jpt-on .gamble._disabled ~ .help,
.jpt-on .gamble._disabled ~ .paytable,
.jpt-on .gamble._disabled ~ .similarGames {
    z-index: 0;
}

.jpt-on .mask,
.jpt-on .header {
    position: relative;
    top: auto;
}

.jpt-on .limit._disabled > span {
    top: -120px;
}

.jpt-on .similarGamesContent {
    position: relative;
}

.jpt-on .similarGamesContent .header .similarGamesLogo {
    display: none;
}

.jpt-on .similarGamesContent .mask {
    position: absolute;
    top: 0;
    height: 100%;
}

/* JACKPOT WIDGET */

.jackpotWidget {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: calc(100% + 40px);
    text-align: center;
    z-index: 99999;
    pointer-events: none;
}

.jackpotLogo,
.jackpotLogo > div {
    position: absolute;
    width: 248px;
    height: 40px;
    z-index: 3;
}

.jackpotLogo > div.jackpotBounce {
    animation: jackpotBounce 1s 3;
}

/* COUNTERS START */

.jackpotCounters,
.jackpotCountersBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 2;
}

.jackpotCountersBg {
    background: #000;
}

.jackpotCounters.jackpotBounce {
    animation: jackpotBounce 1s 3;
}

@-webkit-keyframes jackpotBounce {
    0%,
    15%,
    30%,
    45%,
    60%,
    75%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    8%,
    23%,
    38%,
    53%,
    68% {
        transform: translate3d(0, 2px, 0);
    }
}

@keyframes jackpotBounce {
    0%,
    15%,
    30%,
    45%,
    60%,
    75%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    8%,
    23%,
    38%,
    53%,
    68% {
        transform: translate3d(0, 2px, 0);
    }
}

.jackpotCounter {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 248px;
    height: 40px;
    pointer-events: auto;
}

.jackpotCounter.jackpotWin {
    -webkit-animation: jackpotWinAnimation 200ms infinite;
    animation: jackpotWinAnimation 200ms infinite;
}

.jackpotCounter.jackpotWin.fromMinigame {
    -webkit-animation: jackpotWinAnimation 200ms 20;
    animation: jackpotWinAnimation 200ms 20;
}

@-webkit-keyframes jackpotWinAnimation {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.8);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes jackpotWinAnimation {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.8);
    }
    100% {
        filter: brightness(1);
    }
}

.jackpotLevel {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 40px;
}

.jackpotLevel .jackpotIconError {
    position: absolute;
    top: 0;
    left: 2px;
    width: 44px;
    height: 40px;
    opacity: 0;
}

.warning .jackpotLevel .jackpotIconError {
    -webkit-animation: showJackpotWarning 4s forwards;
    animation: showJackpotWarning 4s forwards;
}

@-webkit-keyframes showJackpotWarning {
    0%,
    40%,
    80% {
        opacity: 0;
    }
    20%,
    60%,
    100% {
        opacity: 1;
    }
}

@keyframes showJackpotWarning {
    0%,
    40%,
    80% {
        opacity: 0;
    }
    20%,
    60%,
    100% {
        opacity: 1;
    }
}

.jackpotFrame {
    position: absolute;
    top: 0;
    left: 0;
    width: 248px;
    height: 40px;
}

.jackpotDigitsHolder,
.jackpotGradient {
    position: absolute;
    top: 4px;
    left: 45px;
    width: 181px;
    height: 32px;
}

.jackpotDigitsHolder.thousandsFormat {
    transform-origin: right center;
    transform: scale(0.92);
    left: 31px;
    width: 195px;
}

.digits {
    position: relative;
    height: 32px;
    width: 17px;
    overflow: hidden;
    display: inline-block;
}

.digits.decimalOffset,
.digits.thousandsOffset {
    margin-left: 7px;
}

.jackpotError .digits.decimalOffset,
.jackpotError .digits.thousandsOffset {
    margin-left: 0;
}

.digit {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    width: 100%;
    height: 32px;
    font-family:
        'Bebas Neue',
        Arial Narrow,
        Arial;
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    color: #fff;
}

.jackpotExpired .jackpotDigitsHolder,
.jackpotExpired .jackpotHistoryDataValueBig,
.jackpotExpired .jackpotHistoryDataValue {
    opacity: 0.3;
}

.jackpotError .digit {
    color: rgba(255, 255, 255, 0.25);
}

.digit.letter {
    background: transparent;
}

.jackpotCounter.jackpotWin .digit {
    color: #ffff00;
}

.digit.nDot {
    width: 8px;
    left: auto;
}

.digit.leadingZero {
    background: transparent;
}

.l-1 .digit.leadingZero {
    color: #6a4d34;
}

.l-2 .digit.leadingZero {
    color: #555555;
}

.l-3 .digit.leadingZero {
    color: #615134;
}

.l-4 .digit.leadingZero {
    color: #335168;
}

.l-1 .jackpotCurrencyLetter {
    color: #f7d485;
}

.l-2 .jackpotCurrencyLetter {
    color: #c3c3c3;
}

.l-3 .jackpotCurrencyLetter {
    color: #f2e75c;
}

.l-4 .jackpotCurrencyLetter {
    color: #c4ecf5;
}

.jackpotCurrency {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 17px;
    height: 28px;
    padding: 2px 0;
}

.jackpotCurrencyLetter {
    font-family:
        'Bebas Neue',
        Arial Narrow,
        Arial;
    font-weight: bold;
    font-size: 9px;
    height: 33%;
    color: #fff;
}

.jackpotCurrency.ln-1 {
    height: 32px;
    padding: 0;
}

.jackpotCurrency.ln-1 .jackpotCurrencyLetter:nth-child(1) {
    height: 32px;
    line-height: 32px;
    font-size: 28px;
}

.jackpotCurrency.ln-1 .jackpotCurrencyLetter:nth-child(2),
.jackpotCurrency.ln-1 .jackpotCurrencyLetter:nth-child(3) {
    display: none;
}

.jackpotCurrency.ln-2 {
    height: 16px;
    padding: 0;
}

.jackpotCurrency.ln-2 .jackpotCurrencyLetter:nth-child(1),
.jackpotCurrency.ln-2 .jackpotCurrencyLetter:nth-child(2) {
    height: 16px;
    line-height: 16px;
    font-size: 13px;
}

.jackpotCurrency.ln-2 .jackpotCurrencyLetter:nth-child(3) {
    display: none;
}

/* COUNTERS END */

/* HISTORY DIALOGS START */

.jackpotHistory {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.jackpotHistoryDialog {
    display: inline-block;
    position: absolute;
    top: 44px;
    left: 0;
    width: 248px;
    background: #000;
    border: 2px solid #fff;
    box-sizing: border-box;
    padding: 4px;
    font-family:
        'Bebas Neue',
        Arial Narrow,
        Arial;
}

.jackpotHistoryDialog._disabled {
    display: none;
}

.l-1.jackpotHistoryDialog {
    background: #320000;
    border-color: #eda283;
}

.l-1.jackpotHistoryDialog .jackpotHistoryDataValueBig {
    color: #eda283;
}

.l-2.jackpotHistoryDialog {
    background: #2a2a2a;
    border-color: #dfdfdf;
}

.l-2.jackpotHistoryDialog .jackpotHistoryDataValueBig {
    color: #dfdfdf;
}

.l-3.jackpotHistoryDialog {
    background: #392601;
    border-color: #fdd55a;
}

.l-3.jackpotHistoryDialog .jackpotHistoryDataValueBig {
    color: #fdd55a;
}

.l-4.jackpotHistoryDialog {
    background: #001741;
    border-color: #9fc3fd;
}

.l-4.jackpotHistoryDialog .jackpotHistoryDataValueBig {
    color: #9fc3fd;
}

.jackpotHistorySection {
    padding-bottom: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.jackpotHistorySection:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.jackpotHistorySection .jackpotLevel {
    position: static;
    top: auto;
    left: auto;
    display: inline-block;
    width: 48px;
    height: 40px;
    vertical-align: middle;
}

.jackpotTitle {
    display: inline-block;
    text-transform: uppercase;
    font-size: 28px;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    vertical-align: middle;
}

.jackpotHistoryDataHolder {
    display: block;
    text-align: left;
}

.jackpotHistoryDataLabel,
.jackpotHistoryDataValue {
    display: inline-block;
    text-transform: uppercase;
    font-size: 17px;
}

.jackpotHistoryDataLabel {
    width: 60%;
}

.jackpotHistoryDataValue {
    width: 40%;
}

.jackpotHistoryDataValueBig {
    font-size: 32px;
    color: #1eff00;
    padding: 4px 0;
    font-weight: bold;
}

/* HISTORY DIALOGS END */

/* LAYOUT SETTINGS START */

.jackpotLogo {
    top: 0;
    left: 0;
}

.jackpotCounter:nth-child(1),
.jackpotHistoryDialog:nth-child(1) {
    left: auto;
    right: 0;
}

.jackpotCounter:nth-child(2),
.jackpotHistoryDialog:nth-child(2) {
    left: auto;
    right: 258px;
}

.jackpotCounter:nth-child(3),
.jackpotHistoryDialog:nth-child(3) {
    left: auto;
    right: 516px;
}

.jackpotCounter:nth-child(4),
.jackpotHistoryDialog:nth-child(4) {
    left: auto;
    right: 774px;
}

/* LAYOUT SETTINGS END */

/* HELP */

.hlpJackpotLevel {
    position: absolute;
    top: 0;
    left: 0;
    width: 116px;
    height: 100%;
}

.hlpLevel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 40px;
    margin: -20px -24px;
}

body:not(.jpt-on) .helpJackpot {
    display: none;
}

/****************** counters ********************/

.jackpotFrame,
.jackpotLevel,
.jackpotIconError,
.digit,
.hlpLevel,
.jackpotLogo > div {
    background-image: url(../Game/Graphics/SpriteSheets/CSS_jackpot.png?_t=20250304202739);
    background-repeat: no-repeat;
}

/*******************************************************/

.l-1 .jackpotFrame {
    background-position: -1px -1px;
}

.hlpLevel.bronze,
.l-1 .jackpotLevel {
    background-position: -1px -211px;
}

.l-1 .digit.n0 {
    background-position: -1px -279px;
}

.l-1 .digit.n1 {
    background-position: -1px -313px;
}

.l-1 .digit.n2 {
    background-position: -1px -347px;
}

.l-1 .digit.n3 {
    background-position: -1px -381px;
}

.l-1 .digit.n4 {
    background-position: -1px -415px;
}

.l-1 .digit.n5 {
    background-position: -1px -449px;
}

.l-1 .digit.n6 {
    background-position: -20px -279px;
}

.l-1 .digit.n7 {
    background-position: -20px -313px;
}

.l-1 .digit.n8 {
    background-position: -20px -347px;
}

.l-1 .digit.n9 {
    background-position: -20px -381px;
}

.l-1 .digit.nDot {
    background-position: -247px -211px;
}

.l-4 .jackpotFrame {
    background-position: -1px -43px;
}

.hlpLevel.diamond,
.l-4 .jackpotLevel {
    background-position: -51px -211px;
}

.l-4 .digit.n0 {
    background-position: -20px -415px;
}

.l-4 .digit.n1 {
    background-position: -20px -449px;
}

.l-4 .digit.n2 {
    background-position: -39px -253px;
}

.l-4 .digit.n3 {
    background-position: -58px -253px;
}

.l-4 .digit.n4 {
    background-position: -77px -253px;
}

.l-4 .digit.n5 {
    background-position: -96px -253px;
}

.l-4 .digit.n6 {
    background-position: -115px -253px;
}

.l-4 .digit.n7 {
    background-position: -134px -253px;
}

.l-4 .digit.n8 {
    background-position: -153px -253px;
}

.l-4 .digit.n9 {
    background-position: -172px -253px;
}

.l-4 .digit.nDot {
    background-position: -247px -245px;
}

.l-3 .jackpotFrame {
    background-position: -1px -85px;
}

.hlpLevel.gold,
.l-3 .jackpotLevel {
    background-position: -101px -211px;
}

.l-3 .digit.n0 {
    background-position: -191px -253px;
}

.l-3 .digit.n1 {
    background-position: -210px -253px;
}

.l-3 .digit.n2 {
    background-position: -39px -313px;
}

.l-3 .digit.n3 {
    background-position: -39px -347px;
}

.l-3 .digit.n4 {
    background-position: -39px -381px;
}

.l-3 .digit.n5 {
    background-position: -39px -415px;
}

.l-3 .digit.n6 {
    background-position: -39px -449px;
}

.l-3 .digit.n7 {
    background-position: -58px -287px;
}

.l-3 .digit.n8 {
    background-position: -77px -287px;
}

.l-3 .digit.n9 {
    background-position: -96px -287px;
}

.l-3 .digit.nDot {
    background-position: -229px -253px;
}

.l-2 .jackpotFrame {
    background-position: -1px -127px;
}

.hlpLevel.silver,
.l-2 .jackpotLevel {
    background-position: -151px -211px;
}

.l-2 .digit.n0 {
    background-position: -115px -287px;
}

.l-2 .digit.n1 {
    background-position: -134px -287px;
}

.l-2 .digit.n2 {
    background-position: -153px -287px;
}

.l-2 .digit.n3 {
    background-position: -172px -287px;
}

.l-2 .digit.n4 {
    background-position: -191px -287px;
}

.l-2 .digit.n5 {
    background-position: -210px -287px;
}

.l-2 .digit.n6 {
    background-position: -229px -313px;
}

.l-2 .digit.n7 {
    background-position: -58px -347px;
}

.l-2 .digit.n8 {
    background-position: -58px -381px;
}

.l-2 .digit.n9 {
    background-position: -58px -415px;
}

.l-2 .digit.nDot {
    background-position: -239px -279px;
}

.jackpotIconError {
    background-position: -201px -211px;
}

.jackpotLogo > div {
    background-position: -1px -169px;
}

/* HD overrides */
.digit.nDot {
    margin-right: 1px;
}

/* ************************* LANGUAGE OVERRIDES ************************* */

/* el-GR */
body[language='el'] .jackpotHistoryDataLabel,
body[language='el-GR'] .jackpotHistoryDataLabel,
body[language='el'] .jackpotHistoryDataValueBig,
body[language='el-GR'] .jackpotHistoryDataValueBig {
    font-family: 'Bebas Neue Greek';
}

/* vi-VN */
body[language='vi'] .jackpotHistoryDataLabel,
body[language='vi-VN'] .jackpotHistoryDataLabel,
body[language='vi'] .jackpotHistoryDataValueBig,
body[language='vi-VN'] .jackpotHistoryDataValueBig {
    font-family: 'Bison Demi Bold';
}

/* MOBILE OVERRIDES */

.jackpotWidget.mobile .jackpotCounter {
    height: 80px;
}

.jackpotWidget.mobile .jackpotHistory._disabled {
    background: transparent;
    pointer-events: none;
}

.jackpotWidget.mobile .jackpotHistoryDialog {
    top: 120px;
    left: 0;
    right: 0;
    width: 576px;
    margin: auto;
    padding: 12px;
    pointer-events: auto;
}

.jackpotWidget.mobile .jackpotHistoryDataLabel,
.jackpotWidget.mobile .jackpotHistoryDataValue {
    font-size: 36px;
}

.jackpotWidget.mobile .jackpotHistoryDataValueBig {
    font-size: 72px;
}

.jackpotWidget.mobile .jackpotCloseBtn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

.jackpotWidget.mobile .jackpotCloseBtn:before,
.jackpotWidget.mobile .jackpotCloseBtn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 2px;
}

.jackpotWidget.mobile .jackpotCloseBtn:after {
    transform: rotate(-45deg);
}

.jackpotWidget.mobile .jackpotTitle {
    font-size: 40px;
    height: 60px;
    line-height: 60px;
}

.gamble._disabled ~ .jackpotWidget.mobile {
    z-index: 0;
}

.mobile .helpJackpot .hlpGamePanelText {
    min-height: 80px;
}

/* MOBILE PORTRAIT OVERRIDES */

.jpt-on.portrait .screen {
    top: 188px;
    height: calc(100% - 188px);
}

.jpt-on.portrait #collectedWin.win .label {
    bottom: 0;
}

.jpt-on.portrait .similarGamesContent .header {
    display: none;
}

.jpt-on.portrait .similarGamesContent .mask {
    position: relative;
    top: 0;
    height: 100%;
}

.jpt-on .limit._disabled > span {
    top: -280px;
}

.portrait .jackpotWidget.mobile {
    top: -188px;
    width: 720px;
    height: calc(405px + 188px);
}

.portrait .jackpotWidget.mobile .jackpotCounters:not(.baseCounterHeight),
.portrait .jackpotWidget.mobile .jackpotCountersBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
    height: 188px;
}

.portrait .jackpotWidget.mobile .jackpotLogo {
    top: 6px;
    left: 28px;
    right: 0;
    margin: auto;
    transform-origin: top center;
    transform: scale(1.4);
}

.portrait .jackpotWidget.mobile .jackpotCounter {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 248px;
    height: 40px;
    pointer-events: auto;
    transform: scale(1.4);
}

.portrait .jackpotWidget.mobile .jackpotCounter:nth-child(1) {
    transform: scale(1.32);
    transform-origin: top right;
    top: 130px;
    left: auto;
    right: 30px;
}

.portrait .jackpotWidget.mobile .jackpotCounter:nth-child(2) {
    transform: scale(1.32);
    transform-origin: top left;
    top: 130px;
    left: 30px;
    right: auto;
}

.portrait .jackpotWidget.mobile .jackpotCounter:nth-child(3) {
    transform-origin: top right;
    top: 68px;
    left: auto;
    right: 10px;
}

.portrait .jackpotWidget.mobile .jackpotCounter:nth-child(4) {
    transform-origin: top left;
    top: 68px;
    left: 10px;
    right: auto;
}

/* history dialog */

.portrait .jackpotWidget.mobile .jackpotHistoryDialog {
    top: 200px;
    width: 480px;
    border-radius: 12px;
}

.portrait .jackpotWidget.mobile .jackpotHistoryDataLabel,
.portrait .jackpotWidget.mobile .jackpotHistoryDataValue {
    font-size: 24px;
}

.portrait .jackpotWidget.mobile .jackpotHistoryDataValueBig {
    font-size: 48px;
}

.portrait .gamble._disabled ~ .settings,
.portrait .gamble._disabled ~ .help,
.portrait .gamble._disabled ~ .paytable,
.portrait .gamble._disabled ~ .similarGames,
.portrait .settings,
.portrait .help,
.portrait .paytable,
.portrait .similarGames {
    z-index: 2;
}

.portrait .gamble._disabled ~ .jackpotMiniGame,
.portrait .jackpotMiniGame {
    z-index: 1;
}

/* TABLET OVERRIDES */

.portrait.tablet .jackpotWidget.mobile .jackpotHistoryDialog {
    top: 60px;
}

.jpt-on.portrait.tablet .screen {
    top: 24px;
    height: calc(100% - 24px);
}

.jpt-on.portrait.tablet .gameControls {
    height: calc(100% - 389px);
}

.portrait.tablet .jackpotWidget.mobile {
    top: -22px;
    height: calc(100% + 22px);
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounters:not(.baseCounterHeight),
.portrait.tablet .jackpotWidget.mobile .jackpotCountersBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 720px;
    height: 22px;
}

.portrait.tablet .jackpotWidget.mobile .jackpotLogo {
    transform: scale(0.55);
    transform-origin: top left;
    top: 0;
    left: 0;
    right: auto;
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounter {
    transform: scale(0.55);
    transform-origin: top right;
    top: 0;
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounter:nth-child(1) {
    left: auto;
    right: 0;
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounter:nth-child(2) {
    left: auto;
    right: 146px;
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounter:nth-child(3) {
    left: auto;
    right: 292px;
}

.portrait.tablet .jackpotWidget.mobile .jackpotCounter:nth-child(4) {
    left: auto;
    right: 438px;
}

/* portrait-xs with jackpot override */

.jpt-on.mobile-xs.portrait .gameControls .spinBtn,
.jpt-on.mobile-xs.portrait .gameControls .stopBtn,
.jpt-on.mobile-xs.portrait .gameControls .fsEnterBtn,
.jpt-on.mobile-xs.portrait .gameControls .fsReturnBtn,
.jpt-on.mobile-xs.portrait .gameControls .pickEnterBtn,
.jpt-on.mobile-xs.portrait .gameControls .pickReturnBtn {
    transform: scale(1.2);
    bottom: 80px;
}

.jpt-on.mobile-xs.portrait .gameControls .betBtn,
.jpt-on.mobile-xs.portrait .gameControls .gambleBtn {
    transform: scale(0.9);
    bottom: -8px;
    left: 336px;
}

.jpt-on.mobile-xs.portrait .gameControls .autoplayBtn,
.jpt-on.mobile-xs.portrait .gameControls .autoplayStopBtn,
.jpt-on.mobile-xs.portrait .gameControls .collectBtn {
    transform: scale(0.9);
    bottom: 184px;
    left: 336px;
}

.jpt-on.mobile-xs.portrait .gameControls .collectBtn,
.jpt-on.mobile-xs.portrait .gameControls .gambleBtn {
    transform: scale(0.589);
}

.jpt-on.mobile-xs.portrait .autoplayPopUpMask {
    bottom: 280px;
    left: auto;
    right: 163px;
}

.jpt-on.mobile-xs.portrait .buyFeatureIcon {
    transform: scale(0.9);
    bottom: 80px;
}

.jpt-on.mobile-xs.portrait .userControls .btn.gambleRed,
.jpt-on.mobile-xs.portrait .userControls .btn.gambleBlack {
    transform: scale(1);
    bottom: 228px;
}

.jpt-on.mobile-xs.portrait .gameControls .btnGamble.collectBtn,
.jpt-on.mobile-xs.portrait.reverse .gameControls .btnGamble.collectBtn,
.jpt-on.mobile-xs.portrait .gameControls .btnGamble.halveBtn {
    transform: scale(0.6);
    top: 60px;
    bottom: 0;
    left: auto;
    right: 200px;
}

.jpt-on.mobile-xs.portrait .gameControls .btnGamble.halveBtn {
    left: 200px;
    right: auto;
}

.jpt-on.mobile-xs.portrait.reverse .gameControls .autoplayBtn,
.jpt-on.mobile-xs.portrait.reverse .gameControls .autoplayStopBtn,
.jpt-on.mobile-xs.portrait.reverse .gameControls .collectBtn:not(.btnGamble) {
    left: 0;
    right: 336px;
}

.jpt-on.mobile-xs.portrait.reverse .gameControls .betBtn,
.jpt-on.mobile-xs.portrait.reverse .gameControls .gambleBtn {
    left: 0;
    right: 336px;
}

.jpt-on.mobile-xs.portrait.reverse .autoplayPopUpMask {
    left: 163px;
    right: auto;
}

/* tablet portrait-xs with jackpot override */

.jpt-on.tablet-xs.portrait.tablet .gameControls .spinBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .stopBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .fsEnterBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .fsReturnBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .pickEnterBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .pickReturnBtn {
    transform: scale(0.9);
    top: 92px;
}

.jpt-on.tablet-xs.portrait.tablet .gameControls .betBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .gambleBtn {
    transform: scale(0.5);
    bottom: 102px;
}

.jpt-on.tablet-xs.portrait.tablet .gameControls .autoplayBtn,
.jpt-on.tablet-xs.portrait.tablet .gameControls .autoplayStopBtn {
    transform: scale(0.5);
    top: 60px;
    left: 203px;
}

.jpt-on.tablet-xs.portrait.tablet.reverse .gameControls .autoplayBtn,
.jpt-on.tablet-xs.portrait.tablet.reverse .gameControls .autoplayStopBtn {
    right: 203px;
    left: 0;
}

.jpt-on.tablet-xs.portrait.tablet .gameControls .collectBtn:not(.btnGamble) {
    top: 60px;
    left: 203px;
}

.jpt-on.tablet-xs.portrait.tablet.reverse .gameControls .collectBtn:not(.btnGamble) {
    right: 203px;
    left: 0;
}

.jpt-on.tablet-xs.portrait.tablet .autoplayPopUpMask {
    right: 227px;
    bottom: 0;
}

.jpt-on.tablet-xs.portrait.tablet.reverse .autoplayPopUpMask {
    left: 227px;
    right: auto;
}

.jpt-on.tablet-xs.portrait.tablet .gameControls .collectBtn:not(.btnGamble),
.jpt-on.tablet-xs.portrait.tablet .gameControls .gambleBtn {
    transform: scale(0.327);
}

.jpt-on.tablet-xs.portrait.tablet .gameControls {
    height: calc(100% - 324px);
}

.jpt-on.tablet-xs.portrait.tablet #gambleUserControls .gameControls {
    height: calc(100% - 292px);
}
