/* GAMBLE START */
.gamble {
    position: absolute;
    display: none;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../Gamble/Graphics/Images/gambleBg.jpg?_t=20250305032231) no-repeat;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    z-index: 2;
}

.gambleWrap {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

._inGamble .gambleWrap ~ .jackpotMiniGame,
._inGamble .gambleWrap ~ .settings,
._inGamble .gambleWrap ~ .help,
._inGamble .gambleWrap ~ .paytable,
._inGamble .gambleWrap ~ .similarGames {
    z-index: 2;
}

.gambleWrap > * {
    pointer-events: auto;
}

.gamble._disabled {
    top: -720px;
}

.gambleMainInfo {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    width: 796px;
    height: 112px;
    margin: 0 auto;
}

.gambleBalance,
.gambleWin {
    float: left;
    width: 200px;
    height: 80px;
    text-align: center;
    margin-top: 32px;
}

.gambleDoubleTo {
    float: left;
    width: 276px;
    height: 100%;
    text-align: center;
    margin: 0 60px;
}

.gambleLabel,
.gambleLabelBig {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #37ffff;
    text-shadow: 0 2px 2px #000;
    z-index: 1;
}

.gambleLabel {
    font-size: 24px;
    line-height: 29px;
}

.gambleLabelBig {
    font-size: 32px;
    line-height: 40px;
}

.gambleLabel.currency {
    font-size: 16px;
    padding-left: 4px;
}

.gambleLabelBig.currency {
    font-size: 24px;
    padding-left: 6px;
}

.gambleValue,
.gambleValueBig {
    display: block;
    position: absolute;
    bottom: 0;
    text-align: center;
}

.gambleValue {
    width: 199px;
    height: 44px;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    background: url(../Gamble/Graphics/Images/gambleSmallFieldsBg.png?_t=20250305032231) no-repeat;
    padding: 20px 14px 14px;
    margin: -14px;
}

.gambleWin.winAnimation .gambleValue {
    -webkit-animation: valueAnimation 0.2s;
    animation: valueAnimation 0.2s;
}

@-webkit-keyframes valueAnimation {
    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        color: #aef803;
        text-shadow: 0 0 50px #b6f3ff;
    }
}

@keyframes valueAnimation {
    0%,
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        color: #aef803;
        text-shadow: 0 0 50px #b6f3ff;
    }
}

.gambleValueBig {
    width: 275px;
    height: 67px;
    font-size: 54px;
    font-weight: bold;
    letter-spacing: 1px;
    background: url(../Gamble/Graphics/Images/gambleBigFieldsBg.png?_t=20250305032231) no-repeat;
    padding: 17px 14px 14px;
    margin: -14px;
}

.gambleBtns {
    position: absolute;
    top: 340px;
    left: 0;
    right: 0;
    width: 956px;
    height: 305px;
    margin: 0 auto;
}

.gambleRedBtn,
.gambleBlackBtn {
    position: absolute;
    top: 0;
    width: 280px;
    height: 48px;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 2px #000000;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 22px;
    padding: 20px 0;
    cursor: pointer;
    z-index: 1;
}

.gambleRedBtn,
.gambleRedBtnMask {
    left: 0;
}

.gambleBlackBtn,
.gambleBlackBtnMask {
    right: 0;
}

.gambleRedBtn:active,
.gambleBlackBtn:active {
    padding: 21px 0 19px;
}

.gambleRedBtn._disabled,
.gambleBlackBtn._disabled {
    color: #639498;
    text-shadow: 2px 2px #1a4c50;
    padding: 20px 0;
    cursor: default;
}

.gambleRedBtnMask,
.gambleBlackBtnMask {
    position: absolute;
    top: 0;
    width: 280px;
    height: 88px;
    padding: 36px;
    margin: -36px;
    -webkit-animation: teaseGambleBtns 1s steps(2) infinite;
    animation: teaseGambleBtns 1s steps(2) infinite;
}

.gambleRedBtnMask {
    background: url(../Gamble/Graphics/Images/redBtnBg.png?_t=20250305032231) no-repeat left center;
}

.gambleBlackBtnMask {
    background: url(../Gamble/Graphics/Images/blackBtnBg.png?_t=20250305032231) no-repeat left center;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes teaseGambleBtns {
    100% {
        background-position: -704px;
    }
}

@keyframes teaseGambleBtns {
    100% {
        background-position: -704px;
    }
}

.gambleRedBtn:hover:not(.noHover) + .gambleRedBtnMask {
    background: url(../Gamble/Graphics/Images/redBtnBg.png?_t=20250305032231) no-repeat -704px;
    -webkit-animation: none;
    animation: none;
}

.gambleRedBtn:active:not(.breakNot) + .gambleRedBtnMask {
    background: url(../Gamble/Graphics/Images/redBtnBg.png?_t=20250305032231) no-repeat -1056px;
    -webkit-animation: none;
    animation: none;
}

.gambleRedBtn._disabled + .gambleRedBtnMask,
.gambleRedBtn._disabled:hover:not(.noHover) + .gambleRedBtnMask,
.gambleRedBtn._disabled:active:not(.breakNot) + .gambleRedBtnMask {
    background: url(../Gamble/Graphics/Images/redBtnBg.png?_t=20250305032231) no-repeat -1408px;
    -webkit-animation: none;
    animation: none;
}

.gambleBlackBtn:hover:not(.noHover) + .gambleBlackBtnMask {
    background: url(../Gamble/Graphics/Images/blackBtnBg.png?_t=20250305032231) no-repeat -704px;
    -webkit-animation: none;
    animation: none;
}

.gambleBlackBtn:active:not(.breakNot) + .gambleBlackBtnMask {
    background: url(../Gamble/Graphics/Images/blackBtnBg.png?_t=20250305032231) no-repeat -1056px;
    -webkit-animation: none;
    animation: none;
}

.gambleBlackBtn._disabled + .gambleBlackBtnMask,
.gambleBlackBtn._disabled:hover:not(.noHover) + .gambleBlackBtnMask,
.gambleBlackBtn._disabled:active:not(.breakNot) + .gambleBlackBtnMask {
    background: url(../Gamble/Graphics/Images/blackBtnBg.png?_t=20250305032231) no-repeat -1408px;
    -webkit-animation: none;
    animation: none;
}

.gambleRedBtn._hover + .gambleRedBtnMask,
.gambleBlackBtn._hover + .gambleBlackBtnMask {
    -webkit-animation: none;
    animation: none;
}

.gambleHalfBtn,
.gambleCollectBtn {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 31px;
    font-size: 26px;
    font-weight: bold;
    color: #015662;
    text-shadow: 0 2px 2px #ffffff;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 20px;
    padding: 17px 0;
    cursor: pointer;
    z-index: 1;
}

.gambleHalfBtn,
.gambleHalfBtnMask {
    left: 80px;
}

.gambleCollectBtn,
.gambleCollectBtnMask {
    right: 80px;
}

.gambleHalfBtn:active,
.gambleCollectBtn:active {
    padding: 18px 0 16px;
}

.gambleHalfBtn._disabled,
.gambleCollectBtn._disabled {
    color: #235a60;
    text-shadow: 1px 1px #487e83;
    padding: 17px 0;
    cursor: default;
}

.gambleHalfBtnMask,
.gambleCollectBtnMask {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 65px;
    background: url(../Gamble/Graphics/Images/gambleSmallBtnBg.png?_t=20250305032231) no-repeat;
    padding: 30px;
    margin: -30px;
}

.gambleHalfBtn:hover:not(.noHover) + .gambleHalfBtnMask,
.gambleCollectBtn:hover:not(.noHover) + .gambleCollectBtnMask {
    background: url(../Gamble/Graphics/Images/gambleSmallBtnBg.png?_t=20250305032231) no-repeat -260px;
}

.gambleHalfBtn:active:not(.breakNot) + .gambleHalfBtnMask,
.gambleCollectBtn:active:not(.breakNot) + .gambleCollectBtnMask {
    background: url(../Gamble/Graphics/Images/gambleSmallBtnBg.png?_t=20250305032231) no-repeat -520px;
}

.gambleHalfBtn._disabled + .gambleHalfBtnMask,
.gambleCollectBtn._disabled + .gambleCollectBtnMask,
.gambleHalfBtn._disabled:hover:not(.noHover) + .gambleHalfBtnMask,
.gambleCollectBtn._disabled:hover:not(.noHover) + .gambleCollectBtnMask,
.gambleHalfBtn._disabled:active:not(.breakNot) + .gambleHalfBtnMask,
.gambleCollectBtn._disabled:active:not(.breakNot) + .gambleCollectBtnMask {
    background: url(../Gamble/Graphics/Images/gambleSmallBtnBg.png?_t=20250305032231) no-repeat -780px;
}

.gambleCards {
    position: absolute;
    top: 244px;
    left: 0;
    right: 0;
    width: 276px;
    height: 401px;
    margin: 0 auto;
}

.gambleCardTeaser {
    position: relative;
    width: 192px;
    height: 281px;
    background: url(../Gamble/Graphics/Images/cardTease.png?_t=20250305032231) no-repeat;
    padding: 49px;
    margin: -49px -7px;
    -webkit-animation: glow 3s infinite;
    animation: glow 3s infinite;
}

@-webkit-keyframes glow {
    0%,
    100% {
        opacity: 0.5;
    }
    25%,
    75% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes glow {
    0%,
    100% {
        opacity: 0.5;
    }
    25%,
    75% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.gambleActualCard {
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -ms-transform: perspective(1000px);
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
}

.gambleActualCard._reveal .gambleCardBack {
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.gambleActualCard._reveal .gambleCardFront {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.gambleActualCard,
.gambleCardFront,
.gambleCardBack {
    position: absolute;
    top: 0;
    left: 42px;
    width: 192px;
    height: 281px;
}

.gambleCardRevealer {
    position: relative;
    -moz-transform: perspective(1000px);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

.gambleCardFront,
.gambleCardBack {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transition 0.2s;
    -o-transition: -o-transform 0.2s;
    -ms-transition: -ms-transform 0.2s;
    transition: transform 0.2s;
}

.gambleCardFront {
    left: 0;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    background: url(../Gamble/Graphics/Images/cardBack.png?_t=20250305032231) no-repeat 0px 0px;
}

.gambleCardBack {
    left: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.gambleCardBack._CA {
    background: url(../Gamble/Graphics/Images/card_CA.png?_t=20250305032231) no-repeat;
}

.gambleCardBack._DA {
    background: url(../Gamble/Graphics/Images/card_DA.png?_t=20250305032231) no-repeat;
}

.gambleCardBack._HA {
    background: url(../Gamble/Graphics/Images/card_HA.png?_t=20250305032231) no-repeat;
}

.gambleCardBack._SA {
    background: url(../Gamble/Graphics/Images/card_SA.png?_t=20250305032231) no-repeat;
}

.gambleCardBack._JR {
    background: url(../Gamble/Graphics/Images/card_joker.png?_t=20250305032231) no-repeat;
}

.gamblePrevious {
    position: absolute;
    bottom: 0;
    height: 94px;
}

.gamblePrevious .gambleLabel {
    display: block;
    width: 100%;
}

.gamblePreviousCard {
    float: left;
    width: 43px;
    height: 64px;
    background: url(../Gamble/Graphics/Images/previousCardBg.png?_t=20250305032231) no-repeat;
    background-size: contain;
    padding: 14px;
    margin: -14px 1px -14px -14px;
}

.gamblePreviousCard:last-of-type {
    margin-right: -14px;
}

.gamblePreviousCard .item {
    width: 43px;
    height: 64px;
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat;
}

.gamblePreviousCard .item._CA {
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat -43px 0;
}
.gamblePreviousCard .item._DA {
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat -86px 0;
}
.gamblePreviousCard .item._HA {
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat -129px 0;
}
.gamblePreviousCard .item._SA {
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat -172px 0;
}
.gamblePreviousCard .item._JR {
    background: url(../Gamble/Graphics/Images/previousCard.png?_t=20250305032231) no-repeat -215px 0;
}

.gambleAttempts,
.gambleDefaultRisk,
.gambleTicker {
    position: absolute;
    left: 0;
    right: 0;
    text-shadow: 0 2px 2px #000;
    text-align: center;
    margin: 0 auto;
}

.gambleDefaultRisk {
    z-index: 10;
    color: #fff;
    text-shadow:
        0 0 2px #000,
        0 0 2px #000,
        0 0 2px #000;
    font-weight: normal;
    bottom: 4px;
    font-size: 20px;
    line-height: 20px;
}

body[language='ka'] .gambleDefaultRisk,
body[language='ka-GE'] .gambleDefaultRisk,
body[language='el'] .gambleDefaultRisk,
body[language='el-GR'] .gambleDefaultRisk {
    font-size: 16px;
}

.gambleAttempts {
    top: 194px;
    font-size: 28px;
    line-height: 28px;
    color: #37ffff;
    z-index: 1;
}

.gambleAttempts strong {
    font-weight: normal;
    color: #aef803;
}

.gambleTicker {
    bottom: 24px;
    font-size: 24px;
    line-height: 24px;
    -webkit-animation: blinkTicker 1s infinite;
    animation: blinkTicker 1s infinite;
}

@-webkit-keyframes blinkTicker {
    0%,
    100% {
        opacity: 0;
    }
    35%,
    65% {
        opacity: 1;
    }
}

@keyframes blinkTicker {
    0%,
    100% {
        opacity: 0;
    }
    35%,
    65% {
        opacity: 1;
    }
}
/* GAMBLE END */
