/* GAMBLE START */
.gamble {
    position: absolute;
    /* display: none; */
    bottom: -720px;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gambleWrap {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    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 {
    /* bottom: -720px; */
}

.gambleMainInfo {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    width: 808px;
    height: 123px;
    margin: 0 auto;
}

.gambleLogo {
    background: url(../Gamble/Graphics/Images/logo.png?_t=20250304233328) no-repeat;
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    margin: auto;
    width: 440px;
    height: 72px;
}

.gambleBalance,
.gambleWin {
    position: absolute;
    left: 0;
    right: auto;
    width: 260px;
    height: 112px;
    text-align: center;
    margin-top: 21px;
}

.gambleBalance {
    left: -27px;
}

.gambleWin {
    left: auto;
    right: -27px;
}

.gambleDoubleTo {
    position: absolute;
    left: 0;
    right: 0;
    width: 301px;
    height: 132px;
    text-align: center;
    margin: 3px auto 0;
}

.gambleLabel,
.gambleLabelBig {
    display: inline-block;
    position: relative;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 8px black;
    color: #ffc502;
    z-index: 1;
}

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

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

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

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

.gambleValue,
.gambleValueBig {
    display: block;
    margin: -13px auto 0;
}

.gambleValue {
    width: 232px;
    height: 98px;
    font-size: 33px;
    font-weight: bold;
    letter-spacing: 1px;
    box-sizing: border-box;
    line-height: 98px;
}

.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.25);
        transform: scale(1.25);
        color: #ffff00;
        text-shadow: 0 0 33px #fff;
    }
}

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

    50% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        color: #ffff00;
        text-shadow: 0 0 33px #fff;
    }
}

.gambleValueBig {
    width: 301px;
    height: 113px;
    font-size: 53px;
    font-weight: bold;
    letter-spacing: 1px;
    box-sizing: border-box;
    line-height: 113px;
}

.gambleBtns {
    position: absolute;
    top: 308px;
    left: 0;
    right: 0;
    width: 979px;
    height: 353px;
    margin: 0 auto;
}

.gambleRedBtn,
.gambleBlackBtn {
    position: absolute;
    top: 0;
    width: 281px;
    height: 89px;
    line-height: 89px;
    font-size: 45px;
    font-weight: bold;
    color: #e5e5e5;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    z-index: 2;

    /* offset problem fix */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.gambleRedBtn,
.gambleRedBtnMask {
    left: 0;
}

.gambleBlackBtn,
.gambleBlackBtnMask {
    right: 0;
}

.gambleRedBtn:active,
.gambleBlackBtn:active {
    line-height: 91px;
}

.gambleRedBtn._disabled,
.gambleBlackBtn._disabled,
.gambleRedBtn._disabled:hover:not(.noHover),
.gambleBlackBtn._disabled:hover:not(.noHover) {
    margin-right: 0;
    line-height: 89px;
    /*-webkit-filter: brightness(0.6) grayscale(1);*/
    /*filter: brightness(0.6) grayscale(1);*/
    cursor: default;
}

.gambleBlackBtn._disabled,
.gambleBlackBtn._disabled:hover:not(.noHover),
.gambleRedBtn._disabled,
.gambleRedBtn._disabled:hover:not(.noHover) {
    color: #000;
    text-shadow: 0 0 4px #666;
}

.gambleRedBtnMask,
.gambleBlackBtnMask {
    position: absolute;
    top: 0;
    width: 281px;
    height: 89px;
    background: none !important;
    z-index: 1;
}

.button .content,
.button .glow {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.button .glow {
    box-shadow: 0 0 120px 7px rgba(255, 197, 2, 0.6);
    width: 100%;
    height: 102%;
    border-radius: 23px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    z-index: 1;
}

.button.gambleRedBtnMask .glow,
.button.gambleBlackBtnMask .glow {
    -webkit-animation: teaseGambleBtnsGlow 1s infinite;
    animation: teaseGambleBtnsGlow 1s infinite;
}

.button.gambleBlackBtnMask .glow {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/*.gambleRedBtnMask .content {*/
/*    -webkit-animation: teaseGambleBtns 1s infinite;*/
/*    animation: teaseGambleBtns 1s infinite;*/
/*}*/

/*.gambleBlackBtnMask .content {*/
/*    -webkit-animation: teaseBlackGambleBtn 1s infinite 0.5s;*/
/*    animation: teaseBlackGambleBtn 1s infinite 0.5s;*/
/*}*/

@keyframes teaseGambleBtnsGlow {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes teaseGambleBtnsGlow {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/*@keyframes teaseGambleBtns {*/
/*    0%, 100% {*/
/*        -webkit-filter: brightness(1);*/
/*        filter: brightness(1);*/
/*    }*/

/*    50% {*/
/*        -webkit-filter: brightness(1.8);*/
/*        filter: brightness(1.8);*/
/*    }*/
/*}*/

/*@-webkit-keyframes teaseGambleBtns {*/
/*    0%, 100% {*/
/*        -webkit-filter: brightness(1);*/
/*        filter: brightness(1);*/
/*    }*/

/*    50% {*/
/*        -webkit-filter: brightness(1.8);*/
/*        filter: brightness(1.8);*/
/*    }*/
/*}*/

/*@keyframes teaseBlackGambleBtn {*/
/*    0%, 100% {*/
/*        -webkit-filter: brightness(1);*/
/*        filter: brightness(1);*/
/*    }*/

/*    50% {*/
/*        -webkit-filter: brightness(2);*/
/*        filter: brightness(2);*/
/*    }*/
/*}*/

/*@-webkit-keyframes teaseBlackGambleBtn {*/
/*    0%, 100% {*/
/*        -webkit-filter: brightness(1);*/
/*        filter: brightness(1);*/
/*    }*/

/*    50% {*/
/*        -webkit-filter: brightness(2);*/
/*        filter: brightness(2);*/
/*    }*/
/*}*/

.gambleBlackBtn:hover:not(.noHover) + .gambleBlackBtnMask .content,
.gambleBlackBtn:active + .gambleBlackBtnMask .content,
.gambleBlackBtn:hover:not(.noHover),
.gambleBlackBtn:active:not(._disabled),
.gambleRedBtn:hover:not(.noHover) + .gambleRedBtnMask .content,
.gambleRedBtn:active + .gambleRedBtnMask .content,
.gambleRedBtn:hover:not(.noHover),
.gambleRedBtn:active:not(._disabled) {
    color: #fff;
    /*-webkit-filter: brightness(2);*/
    /*filter: brightness(2);*/
    -webkit-animation: none;
    animation: none;
}

.gambleRedBtn:hover:not(.noHover) + .gambleRedBtnMask .glow,
.gambleRedBtn:active + .gambleRedBtnMask .glow,
.gambleBlackBtn:hover:not(.noHover) + .gambleBlackBtnMask .glow,
.gambleBlackBtn:active + .gambleBlackBtnMask .glow {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
}

.gambleRedBtn._disabled + .gambleRedBtnMask .content,
.gambleBlackBtn._disabled + .gambleBlackBtnMask .content,
.gambleRedBtn._disabled:hover:not(.noHover) + .gambleRedBtnMask .content,
.gambleBlackBtn._disabled:hover:not(.noHover) + .gambleBlackBtnMask .content,
.gambleRedBtn._disabled._hover + .gambleRedBtnMask .content,
.gambleBlackBtn._disabled._hover + .gambleBlackBtnMask .content {
    /*-webkit-filter: brightness(0.6) grayscale(1);*/
    /*filter: brightness(0.6) grayscale(1);*/
    -webkit-animation: none;
    animation: none;
}

.gambleRedBtn._disabled + .gambleRedBtnMask .glow,
.gambleBlackBtn._disabled + .gambleBlackBtnMask .glow,
.gambleRedBtn._disabled:hover:not(.noHover) + .gambleRedBtnMask .glow,
.gambleBlackBtn._disabled:hover:not(.noHover) + .gambleBlackBtnMask .glow,
.gambleRedBtn._disabled._hover + .gambleRedBtnMask .glow,
.gambleBlackBtn._disabled._hover + .gambleBlackBtnMask .glow {
    -webkit-animation: none;
    animation: none;
    opacity: 0;
}

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

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

.gambleRedBtnMask .frame,
.gambleBlackBtnMask .frame {
    position: absolute;
    width: 300px;
    height: 122px;
    left: -9px;
    top: -16px;
    z-index: 3;
}

.gambleHalfBtn,
.gambleCollectBtn {
    position: absolute;
    bottom: 0;
    width: 199px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
    font-weight: bold;
    color: #e5e5e5;
    /* color: #ffc502;
    text-shadow: 4px 4px 8px red, -4px -4px 8px red, 4px -4px 8px red, -4px 4px 8px red; */
    letter-spacing: 1px;
    text-align: center;
    border-radius: 14px;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 2;
    background: none !important;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.gambleHalfBtnMask,
.gambleCollectBtnMask {
    position: absolute;
    bottom: 0;
    width: 199px;
    height: 60px;
    background: none !important;
    z-index: 1;
}

.gambleHalfBtnMask .glow,
.gambleCollectBtnMask .glow {
    box-shadow: 0 0 21px 3px rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.gambleHalfBtn:hover:not(.noHover),
.gambleCollectBtn:hover:not(.noHover),
.gambleHalfBtn:active:not(._disabled),
.gambleCollectBtn:active:not(._disabled) {
    /* color: #ffe345; */
    color: #fff;
}

.gambleHalfBtn:active,
.gambleCollectBtn:active {
    line-height: 61px;
}

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

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

.gambleHalfBtn._disabled,
.gambleCollectBtn._disabled,
.gambleHalfBtn._disabled:hover:not(.noHover),
.gambleCollectBtn._disabled:hover:not(.noHover),
.gambleHalfBtn._disabled:active,
.gambleCollectBtn._disabled:active {
    line-height: 60px;
    cursor: default;
    color: rgba(255, 255, 255, 0.5);
}

.gambleHalfBtn._disabled + .gambleHalfBtnMask .content,
.gambleCollectBtn._disabled + .gambleCollectBtnMask .content,
.gambleHalfBtn._disabled:hover:not(.noHover) + .gambleHalfBtnMask .content,
.gambleCollectBtn._disabled:hover:not(.noHover) + .gambleCollectBtnMask .content {
    /*-webkit-filter: brightness(0.5) grayscale(1);*/
    /*filter: brightness(0.5) grayscale(1);*/
}

.gambleHalfBtn._disabled,
.gambleCollectBtn._disabled,
.gambleHalfBtn._disabled:hover:not(.noHover),
.gambleCollectBtn._disabled:hover:not(.noHover),
.gambleHalfBtn._disabled:active,
.gambleCollectBtn._disabled:active {
    opacity: 0.8;
    text-shadow: none;
}

.gambleHalfBtnMask .frame,
.gambleCollectBtnMask .frame {
    position: absolute;
    width: 221px;
    height: 98px;
    left: -11px;
    top: -19px;
    z-index: 3;
}

.gambleCards {
    position: absolute;
    top: 227px;
    left: 0;
    right: 0;
    width: 283px;
    height: 432px;
    margin: 0 auto;
}

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

/* START: Accommodating for IE */
.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);
}
/* END: Accommodating for IE */

.gambleCardFrame,
.gambleActualCard,
.gambleCardFront,
.gambleCardBack {
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    width: 181px;
    height: 271px;
    margin: auto;
}

.gambleCardFrame {
    z-index: 2;
}

.cardBg {
    width: 227px;
    height: 316px;
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    margin: auto;
}

.gambleCardTeaser {
    background: none !important;
    box-shadow: 0 0 60px 20px rgba(255, 197, 2, 0.6);
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    border-radius: 20px;
    width: 179px;
    height: 268px;
    margin: auto;
    -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;
    }
}

.gambleCardRevealer {
    position: relative;
    -moz-transform: perspective(667px);
    -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;
}

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

.gamblePrevious {
    position: absolute;
    bottom: 0;
    height: 105px;
    margin: 0 7px;
}

.gamblePrevious .gambleLabel {
    display: block;
    width: 100%;
    line-height: 17px;
    color: #fff;
    text-shadow:
        3px 3px 3px rgba(0, 0, 0, 0.9),
        -3px -3px 3px rgba(0, 0, 0, 0.9),
        3px -3px 3px rgba(0, 0, 0, 0.9),
        -3px 3px 3px rgba(0, 0, 0, 0.9);
    margin-top: 0;
}

.gamblePreviousCard {
    position: relative;
    top: 4px;
    float: left;
    width: 44px;
    height: 64px;
    margin: 0 6px;
}

.prevCardFrame {
    position: absolute;
    width: 47px;
    height: 69px;
    top: -2px;
    left: -1px;
}

.gamblePreviousCard:first-of-type {
    margin-left: 0;
}

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

.gamblePreviousCard .item {
    width: 44px;
    height: 65px;
}

.gambleAttempts,
.gambleDefaultRisk,
.gambleTicker {
    position: absolute;
    left: 0;
    right: 0;
    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: 197px;
    font-size: 28px;
    line-height: 28px;
    color: #ffe2a2;
    text-shadow:
        4px 4px 4px rgba(0, 0, 0, 0.9),
        -4px -4px 4px rgba(0, 0, 0, 0.9),
        4px -4px 4px rgba(0, 0, 0, 0.9),
        -4px 4px 4px rgba(0, 0, 0, 0.9);
    z-index: 1;
}

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

.gambleTicker {
    bottom: 24px;
    font-size: 24px;
    line-height: 24px;
    text-shadow:
        0 0 2px #000,
        0 0 2px #000,
        0 0 2px #000,
        0 0 2px #000,
        0 0 2px #000;
    -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 */

/****************** gambleBtns ********************/

.gamble .button,
.gamble .button .frame,
.gamble .button .content {
    background-image: url(../Gamble/Graphics/SpriteSheets/btns.png?_t=20250304233328);
    background-repeat: no-repeat;
}

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

.gambleBlackBtn + .gambleBlackBtnMask .content {
    background-position: -1px -431px;
}

.gambleBlackBtn:active + .gambleBlackBtnMask .content {
    background-position: -1px -249px;
}

.gambleBlackBtn._disabled + .gambleBlackBtnMask .content {
    background-position: -1px -340px;
}

.gambleBlackBtnMask .frame {
    background-position: -1px -1px;
}

.gambleRedBtn + .gambleRedBtnMask .content {
    background-position: -1px -704px;
}

.gambleRedBtn:active + .gambleRedBtnMask .content {
    background-position: -1px -522px;
}

.gambleRedBtn._disabled + .gambleRedBtnMask .content {
    background-position: -1px -613px;
}

.gambleRedBtnMask .frame {
    background-position: -1px -125px;
}

.gambleHalfBtn + .gambleHalfBtnMask .content,
.gambleCollectBtn + .gambleCollectBtnMask .content {
    background-position: -303px -125px;
}

.gambleHalfBtn:active + .gambleHalfBtnMask .content,
.gambleCollectBtn:active + .gambleCollectBtnMask .content {
    background-position: -303px -1px;
}

.gambleHalfBtn._disabled + .gambleHalfBtnMask .content,
.gambleCollectBtn._disabled + .gambleCollectBtnMask .content {
    background-position: -303px -63px;
}

.gambleHalfBtnMask .frame {
    background-position: -284px -249px;
}

.gambleCollectBtnMask .frame {
    background-position: -284px -349px;
}

/****************** gambleFields ********************/

.gamble .field {
    background-image: url(../Gamble/Graphics/SpriteSheets/fields.png?_t=20250304233328);
    background-repeat: no-repeat;
}

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

.gambleValue {
    background-position: -1px -116px;
}

.gambleValueBig {
    background-position: -1px -1px;
}

/****************** gambleCards ********************/

.gamble .card,
.prevCardFrame {
    background-image: url(../Gamble/Graphics/SpriteSheets/cards.png?_t=20250304233328);
    background-repeat: no-repeat;
}

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

.gambleCardBack._CA {
    background-position: -1px -319px;
}

.gambleCardBack._DA {
    background-position: -1px -592px;
}

.gambleCardBack._HA {
    background-position: -1px -865px;
}

.gambleCardBack._JR {
    background-position: -1px -1411px;
}

.gambleCardBack._SA {
    background-position: -1px -1138px;
}

.cardBg {
    background-position: -1px -1px;
}

.gambleCardFront {
    background-position: -1px -1684px;
}

.prevCardFrame {
    background-position: -184px -319px;
}

.gamblePreviousCard .item._CA {
    background-position: -184px -390px;
}

.gamblePreviousCard .item._DA {
    background-position: -184px -457px;
}

.gamblePreviousCard .item._HA {
    background-position: -184px -524px;
}

.gamblePreviousCard .item._JR {
    background-position: -184px -658px;
}

.gamblePreviousCard .item._SA {
    background-position: -184px -591px;
}

.gamblePreviousCard .item {
    background-position: -184px -725px;
}
