/* FREEZE START */
body.freeze .screen * {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    pointer-events: none !important;
}

/* FREEZE END */

/* AMBIENT BG START */

body #root {
    z-index: 2;
}

/* remove background in mobile protrait */
body.portrait #root {
    background: transparent;
}

.gameShadow {
    box-shadow: 0px 0px 40px 13px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 0px 40px 13px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 40px 13px rgba(0, 0, 0, 1);
}

#ambientBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ambientBackgroundBase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ambientBackgroundTransition {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: none;
}

#ambientBackgroundTransition.show {
    transition: 200ms opacity ease-out;
    opacity: 1;
}

/*backgrounds*/
.loaded #ambientBackgroundBase.base,
.loaded #ambientBackgroundTransition.base {
    background-image: url(../Base/Graphics/Images/Backgrounds/GFX_ambientBackground_base.jpg?_t=20250304233328);
    background-size: cover;
    background-position: center;
}

.loaded #ambientBackgroundBase.jackpotBg,
.loaded #ambientBackgroundTransition.jackpotBg {
    background-image: url(../Base/Graphics/Images/Backgrounds/GFX_ambientBackground_jackpotBg.jpg?_t=20250304233328);
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
}

/* AMBIENT BG END */

/* LOADING START */
.loading {
    position: absolute;
    width: 1280px;
    height: 720px;
    background: #1a2e69;
    background-image: -ms-radial-gradient(
        center,
        ellipse farthest-corner,
        #1a2e69 10%,
        #061032 50%,
        #000000 100%
    ); /* IE10+ */
    background-image: -moz-radial-gradient(
        center,
        ellipse farthest-corner,
        #1a2e69 10%,
        #061032 50%,
        #000000 100%
    ); /* Mozilla Firefox */
    background-image: -o-radial-gradient(
        center,
        ellipse farthest-corner,
        #1a2e69 10%,
        #061032 50%,
        #000000 100%
    ); /* Opera */
    background-image: -webkit-gradient(
        radial,
        center center,
        0,
        center center,
        286,
        color-stop(10, #1a2e69),
        color-stop(50, #061032),
        color-stop(100, #000000)
    ); /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-radial-gradient(
        center,
        ellipse farthest-corner,
        #1a2e69 10%,
        #061032 50%,
        #000000 100%
    ); /* Webkit (Chrome 11+) */
    background-image: radial-gradient(
        ellipse farthest-corner at center,
        #1a2e69 10%,
        #061032 50%,
        #000000 100%
    ); /* W3C Markup */
    z-index: 1000;
}

.loadingLogo {
    position: absolute;
    top: 260px;
    left: 0;
    right: 0;
    width: 800px;
    height: 160px;
    margin: 0 auto;
}

.loadingInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 160px;
    text-align: center;
    margin: 0 auto;
}

.loadingText,
.gameTitle,
.progressNumber {
    color: #93b3d5;
    cursor: default;
}

.loadingText {
    font-size: 20px;
}

.dot {
    -webkit-animation: animateDot 1.5s infinite;
    animation: animateDot 1s infinite;
}

.dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.dot:nth-of-type(3) {
    animation-delay: 0.4s;
}

@-webkit-keyframes animateDot {
    50% {
        opacity: 0;
    }
}

@keyframes animateDot {
    50% {
        opacity: 0;
    }
}

.gameTitle {
    position: absolute;
    top: 0;
    width: 100%;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 1px;
}

.gameTitle sup {
    font-size: 16px;
    line-height: 16px;
}

.progressNumber {
    position: absolute;
    top: 56px;
    width: 100%;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1px;
}

.loading._error .progressNumber {
    color: #e4161a;
    letter-spacing: 0.67px;
}

.progressBar {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    width: 504px;
    height: 8px;
    background: #112357;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
}

.progressBarOverlay {
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#84b0e5+0,e2e9ff+48,9bccf4+50,62b9eb+58,71b4ed+60,71b4ed+60,84b0e5+100 */
    background: rgb(132, 176, 229); /* Old browsers */
    background: -moz-linear-gradient(
        top,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        top,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        rgba(132, 176, 229, 1) 0%,
        rgba(226, 233, 255, 1) 48%,
        rgba(155, 204, 244, 1) 50%,
        rgba(98, 185, 235, 1) 58%,
        rgba(113, 180, 237, 1) 60%,
        rgba(113, 180, 237, 1) 60%,
        rgba(132, 176, 229, 1) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84b0e5', endColorstr='#84b0e5',GradientType=0 ); /* IE6-9 */
}

.loadingIcons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 17px;
    left: 0;
    right: 0;
    width: 1216px;
    height: 38px;
    margin: 0 auto;
}

.loadingIcons .loadingIcons_1 {
    width: 283px;
    height: 100%;
}

.loadingIcons .loadingIcons_2 {
    width: 312px;
    height: 100%;
}
/* LOADING END */

/* LIMIT START */
.limit {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 89px;
    text-align: center;
    margin: 0 auto;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
}

.limit._disabled > span {
    top: -89px;
}

.limit span {
    display: inline-block;
    position: relative;
    padding: 0 8px;
    height: 89px;
    font-size: 36px;
    line-height: 76px;
    font-weight: bold;
    color: #000000;
    text-shadow: 1px 1px #fcf6ab;
    letter-spacing: 1px;
    white-space: nowrap;
    background: url(../Base/Graphics/Images/GFX_limitBg.png?_t=20250304233328) repeat-x;
    top: 0;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    transition-property: top;
}

.limit span:before,
.limit span:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 40px;
    left: -38px;
    height: 89px;
}

.limit span:after {
    left: auto;
    right: -38px;
}
/* LIMIT END */

/* DIALOG WINDOW START */
.dialog {
    position: absolute;
    top: 0;
    bottom: 90px;
    left: 0;
    right: 0;
    width: 606px;
    height: 355px;
    border-radius: 10px;
    padding: 15px;
    margin: auto;
    z-index: 99999;
}

.dialog.error {
    background: rgba(184, 9, 15, 0.9);
    border: 2px solid #d10a11;
}

.dialog.info {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ffffff;
}

.dialog._disabled {
    display: none;
}

.errorPicto {
    float: left;
    width: 67px;
    height: 67px;
}

.infoPicto {
    float: left;
    width: 67px;
    height: 67px;
}

.dialogContent {
    position: relative;
    float: left;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    width: 448px;
    height: 100%;
    padding: 0 13px;
    margin: 0 auto;
}

.dialogContent h3 {
    position: absolute;
    top: 10px;
    letter-spacing: 3px;
    color: #ffffff;
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

.dialogContent p {
    font-size: 28px;
    padding: 6px 0;
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
    max-height: 160px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.dialogContent p:first-of-type {
    color: #ff7777;
}

.info .dialogContent p {
    font-size: 25px;
}

.dialogBtnContainer {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    text-align: center;
}

.dialogBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 182px;
    height: 24px;
    font-size: 21px;
    text-align: center;
    border-radius: 33px;
    padding: 21px 0;
    margin: 0 auto;
    cursor: pointer;
}

.dialogBtn:hover,
.dialogBtn:active {
    -webkit-filter: brightness(1.3);
    -moz-filter: brightness(1.3);
    -o-filter: brightness(1.3);
    -ms-filter: brightness(1.3);
    filter: brightness(1.3);
}

.dialogBtn:active {
    padding: 21px 0 20px;
}

.dialogBtn._disabled:hover,
.dialogBtn._disabled:active {
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none;
}

.dialogBtn._disabled:active {
    padding: 21px 0;
}

.dialogCustomButtons {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    text-align: center;
    vertical-align: middle;
}

.dialogBtn.customDialogBtn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 24px;
}

/* RESPONSIBLE GAMING DIALOG START */
#responsibleGamingDialog .dialogContent h3 {
    width: 100%;
    letter-spacing: 0;
}

#responsibleGamingDialog .dialogContent p {
    font-size: 24px;
    padding: 4px 0;
}

#responsibleGamingDialog .dialogContent p:first-of-type {
    color: #fff;
}

#responsibleGamingDialog .dialogBtn {
    position: unset;
    width: 124px;
    background: none;
    background-image: -ms-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* IE10+ */
    background-image: -moz-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Mozilla Firefox */
    background-image: -o-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Opera */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #b2b2b2),
        color-stop(50, #000000)
    ); /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Webkit (Chrome 11+) */
    background-image: linear-gradient(to bottom, #b2b2b2 0%, #000000 50%); /* W3C Markup */
    border: 2px solid #fff;
    box-shadow: 0 0 1px #fff;
    padding: 9px 0;
    margin: 10px 6px;
}

#responsibleGamingDialog .dialogBtn:active {
    padding: 9px 0 8px;
}

#responsibleGamingDialog .dialogBtn._disabled:active {
    padding: 9px 0;
}
/* RESPONSIBLE GAMING DIALOG END */

/* SESSION TIMER DIALOG START */

.sessionTimer .dialogContent p {
    max-height: 93px;
}

#messageDialog.sessionTimer {
    z-index: 99990;
}

.sessionIntervals {
    box-sizing: border-box;
    padding: 4%;
    text-align: center;
}

.sessionIntervals > div {
    float: none;
    display: inline-block;
    line-height: 36px;
    height: 36px;
    font-size: 36px;
    vertical-align: center;
}

.sessionIntervals .value {
    pointer-events: none;
    min-width: 100px;
}

.sessionIntervals .plusBtn,
.sessionIntervals .minusBtn {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    background: #000;
}

.sessionIntervals .plusBtn._disabled,
.sessionIntervals .minusBtn._disabled {
    border-color: #999999;
    pointer-events: none;
}

/* SESSION TIMER DIALOG END */

/* CASHIER DIALOG START */
#cashierDialog .dialogContent p:first-of-type {
    color: #fff;
}
#cashierDialog .dialogBtn {
    display: inline-block;
    position: unset;
    width: 136px;
    background: none;
    background-image: -ms-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* IE10+ */
    background-image: -moz-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Mozilla Firefox */
    background-image: -o-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Opera */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #b2b2b2),
        color-stop(50, #000000)
    ); /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Webkit (Chrome 11+) */
    background-image: linear-gradient(to bottom, #b2b2b2 0%, #000000 50%); /* W3C Markup */
    border: 2px solid #fff;
    box-shadow: 0 0 1px #fff;
    padding: 9px 0;
    margin: 10px 6px;
}
#cashierDialog .dialogBtn:active {
    padding: 9px 0 8px;
}
#cashierDialog .dialogBtn._disabled:active {
    padding: 9px 0;
}
#cashierDialog .smallCloseBtn {
    top: 12px;
    right: 12px;
}
#cashierDialog #cashierButton {
    background-image: linear-gradient(to bottom, #39d427 0%, #167d0a 50%);
}
#refreshButton {
    font-size: 16px;
    line-height: 25px;
}
/* CASHIER DIALOG END */

/* QUICK SPIN DIALOG START */
#quickspinDialog.quickspinDialogContainer {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: rgba(0, 0, 0, 0.85);
}

#quickspinDialog.quickspinDialogContainer._disabled {
    display: none;
}

#quickspinDialog .dialogContent {
    width: 100%;
    box-sizing: border-box;
}

#quickspinDialog .dialogContent p:first-of-type {
    color: #fff;
}

#quickspinDialog .dialogContent p:last-of-type {
    font-size: 20px;
}

#quickspinDialog .dialogBtn {
    position: unset;
    width: 124px;
    background: none;
    background-image: -ms-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* IE10+ */
    background-image: -moz-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Mozilla Firefox */
    background-image: -o-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Opera */
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #b2b2b2),
        color-stop(50, #000000)
    ); /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-linear-gradient(top, #b2b2b2 0%, #000000 50%); /* Webkit (Chrome 11+) */
    background-image: linear-gradient(to bottom, #b2b2b2 0%, #000000 50%); /* W3C Markup */
    border: 2px solid #fff;
    box-shadow: 0 0 2px #fff;
    padding: 8px 0;
    margin: 10px 6px;
}

#quickspinDialog .dialogBtn:active {
    padding: 9px 0 7px;
}

#quickspinDialog .dialogBtn._disabled:active {
    padding: 8px 0;
}

#quickspinDialog .dialogBtn.green {
    background-image: linear-gradient(to bottom, #39d427 0%, #167d0a 50%);
}
/* QUICK SPIN DIALOG END */
/* DIALOG WINDOW END */

/* FREE ROUNDS BONUS START */
.gamble + .freeRoundsBonus #frbIconActive {
    z-index: 2;
}
.gamble._disabled + .freeRoundsBonus #frbIconActive {
    z-index: 0;
}
.freeRoundsBonus {
    z-index: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    pointer-events: none;
}
.freeRoundsBonus._disabled {
    display: none;
}
.frbDialog,
.frbConfirmationDialog {
    border-radius: 20px;
    background: #002542;
    border: 4px solid #bccce5;
    box-sizing: border-box;
    box-shadow:
        inset 2px 2px #5575a3,
        inset -2px -2px #5575a3,
        inset 2px -2px #5575a3,
        inset -2px 2px #5575a3,
        inset 0 0 60px rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    margin: auto;
    pointer-events: all;
}
.frbDialog {
    position: relative;
    width: 80%;
    height: auto;
}
.frbDialogHeader {
    position: relative;
    height: 84px;
}
.frbDialogHeader .stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 4px);
    height: 56px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 5%, #ee4023 50%, rgba(0, 0, 0, 0) 95%);
    margin: auto;
}
.frbDialogHeader .header {
    position: relative;
    width: 360px;
    height: 84px;
    padding: 0;
    margin: 0 auto;
    z-index: 0;
}
.ffrDialog .frbDialogHeader .header {
    background: url(../Base/Graphics/Images/Extra/ffrFreeSpins.png?_t=20250304233328) no-repeat;
    width: 594px;
}

.ffrDialog .frbDialogHeader .stripe {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 5%, #ffbf00 50%, rgba(0, 0, 0, 0) 95%);
}

.ffrDialog .frbText strong {
    color: #ffbf00;
}

.frbDialogContent {
    height: auto;
    padding: 40px;
    text-align: center;
}
.frbText {
    padding: 8px 0;
}
.frbText a,
.frbText a:hover {
    font-family: 'Source Sans Pro';
    text-transform: none;
    font-size: 25px;
    color: #57b8ff;
    text-decoration: underline;
}
.frbText a:hover {
    text-decoration: none;
}
.frbText b {
    font-size: 32px;
}
.frbText strong,
.frbText.frbPlatformTransactionFail {
    color: #f4775a;
}
.frbText strong.frbNumber {
    font-size: 60px;
    line-height: 60px;
}
.frbOffersList {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-height: 196px;
    text-align: center;
    margin: 20px 0;
}
.frbOfferItem {
    position: relative;
    width: 152px;
    height: 152px;
    background: #000;
    border: 2px solid #bccce5;
    margin: 0 12px;
    cursor: pointer;
    pointer-events: all;
}
#frbDialogContentOther2 .frbOfferItem {
    cursor: default;
    pointer-events: none;
}
#frbDialogContentOther .frbOfferItem:hover {
    box-shadow: 0 0 12px #bccce5;
    -webkit-transition: 0.1s ease;
    transition: 0.1s ease;
}
.frbGameLogo,
.frbGameLoading {
    border: 1px solid #000;
    box-sizing: border-box;
    box-shadow: inset 0 0 8px #000;
}
.frbGameLogo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.frbGameLoading {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.frbDialogContent:not(._hidden) .loadingIcon {
    -webkit-animation: spinLoadingIcon 1.5s linear infinite;
    animation: spinLoadingIcon 1.5s linear infinite;
}
@-webkit-keyframes spinLoadingIcon {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinLoadingIcon {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.frbDialogBtns {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}
.frbBtn {
    width: 220px;
    height: 48px;
    line-height: 48px;
    font-size: 26px;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 33px;
    border: 2px solid #bccce5;
    box-shadow: 0 0 1px #fff;
    background-image: -ms-linear-gradient(top, #4a779b 0%, #002542 50%);
    background-image: -moz-linear-gradient(top, #4a779b 0%, #002542 50%);
    background-image: -o-linear-gradient(top, #4a779b 0%, #002542 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4a779b), color-stop(50, #002542));
    background-image: -webkit-linear-gradient(top, #4a779b 0%, #002542 50%);
    background-image: linear-gradient(to bottom, #4a779b 0%, #002542 50%);
    margin: 4px 16px;
    cursor: pointer;
}
.frbBtn.bright {
    font-weight: bold;
    color: #072543;
    text-shadow: 0 1px 1px #fff;
    border: 2px solid #fff;
    background-image: -ms-linear-gradient(top, #39d427 0%, #167d0a 50%);
    background-image: -moz-linear-gradient(top, #39d427 0%, #167d0a 50%);
    background-image: -o-linear-gradient(top, #39d427 0%, #167d0a 50%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #39d427), color-stop(50, #167d0a));
    background-image: -webkit-linear-gradient(top, #39d427 0%, #167d0a 50%);
    background-image: linear-gradient(to bottom, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
}
.frbBtn:hover,
.frbBtn:active {
    -webkit-filter: brightness(1.3);
    -moz-filter: brightness(1.3);
    -o-filter: brightness(1.3);
    -ms-filter: brightness(1.3);
    filter: brightness(1.3);
}
.frbBtn._disabled:hover,
.frbBtn._disabled:active {
    line-height: 48px;
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none;
}
.frbBtn:active {
    line-height: 49px;
}
.frbIcon {
    position: relative;
    container: sidebar / inline-size;
    font-family: 'Source Sans Pro';
    text-transform: uppercase;
    width: 69% !important;
    text-align: center;
    border-radius: 14px;
    cursor: pointer;
    pointer-events: all;
    margin-top: 16%;
}

#frbIconNew._disabled {
    filter: brightness(0.5);
}
#frbIconActive._disabled {
    color: #fff;
}

.frbIcon._loading {
    pointer-events: none;
    display: block;
}

.frbIcon._loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    border-left-color: rgba(255, 255, 255, 0);
    -webkit-animation: spinLoadingIcon 1.5s linear infinite;
    animation: spinLoadingIcon 1.5s linear infinite;
    background: rgba(0, 0, 0, 0.5);
}
#frbIconActive.cumulativeFrb .frbIconText,
#frbIconActive._disabled.cumulativeFrb .frbIconText {
    color: #ff5125;
    text-shadow:
        1px 1px #5f382e,
        -1px -1px #5f382e,
        1px -1px #5f382e,
        -1px 1px #5f382e;
}
.frbIconLogo {
    width: 100% !important;
    height: 100%;
    border-radius: 14px;
}
.frbIconText {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    font-size: 2em; /* old iOS fallback */
    font-size: 36cqw;
    line-height: 1.46em;
    font-weight: bold;
    text-shadow:
        1px 1px #446da3,
        -1px -1px #446da3,
        1px -1px #446da3,
        -1px 1px #446da3;
    margin: auto;
}
.frbConfirmationDialog {
    -webkit-align-self: center;
    align-self: center;
    position: absolute;
    width: 400px;
    height: auto;
}
.frbConfirmationDialog .frbBtn {
    width: 124px;
}
/* FREE ROUNDS BONUS END */

@-webkit-keyframes flash {
    from,
    25%,
    75%,
    to {
        opacity: 1;
    }

    10%,
    50%,
    90% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    25%,
    75%,
    to {
        opacity: 1;
    }

    10%,
    50%,
    90% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation: flash 1s;
    animation: flash 1s;
}

/****************** cssCommon ********************/

.cssCommon,
.dialogBtn,
.limit span:after,
.limit span:before {
    background-image: url(../Base/Graphics/SpriteSheets/CSS_common.png?_t=20250304233328);

    --loadingLogo_position: 0.4149377593360996% 1.1494252873563218%;
    --loadingLogo_size: 130.125% 154.375%;
    --loadingLogo_ratio: 800 / 160;
    --loadingLogo_width: 800px;
    --loadingLogo_height: 160px;

    --freeRounds_position: 0.14684287812041116% 99.38650306748467%;
    --freeRounds_size: 289.1666666666667% 294.04761904761904%;
    --freeRounds_ratio: 360 / 84;
    --freeRounds_width: 360px;
    --freeRounds_height: 84px;

    --dialogBtn_position: 42.14202561117578% 89.50276243093923%;
    --dialogBtn_size: 571.978021978022% 374.24242424242425%;
    --dialogBtn_ratio: 182 / 66;
    --dialogBtn_width: 182px;
    --dialogBtn_height: 66px;

    --loadingIcons_2_position: 74.7599451303155% 77.51196172248804%;
    --loadingIcons_2_size: 333.65384615384613% 650%;
    --loadingIcons_2_ratio: 312 / 38;
    --loadingIcons_2_width: 312px;
    --loadingIcons_2_height: 38px;

    --loadingIcons_1_position: 73.15436241610739% 96.17224880382776%;
    --loadingIcons_1_size: 351.68918918918916% 650%;
    --loadingIcons_1_ratio: 296 / 38;
    --loadingIcons_1_width: 296px;
    --loadingIcons_1_height: 38px;

    --frbIcon_position: 85.22848034006377% 0.684931506849315%;
    --frbIcon_size: 1041% 244.55445544554456%;
    --frbIcon_ratio: 100 / 101;
    --frbIcon_width: 100px;
    --frbIcon_height: 101px;

    --frbIconLogo_position: 91.17959617428268% 70.54794520547945%;
    --frbIconLogo_size: 1041% 244.55445544554456%;
    --frbIconLogo_ratio: 100 / 101;
    --frbIconLogo_width: 100px;
    --frbIconLogo_height: 101px;

    --error_position: 92.71047227926078% 0.5555555555555556%;
    --error_size: 1553.7313432835822% 368.65671641791045%;
    --error_ratio: 67 / 67;
    --error_width: 67px;
    --error_height: 67px;

    --info_position: 98.4599589322382% 38.333333333333336%;
    --info_size: 1553.7313432835822% 368.65671641791045%;
    --info_ratio: 67 / 67;
    --info_width: 67px;
    --info_height: 67px;

    --limitBgEnd_position: 95.8041958041958% 86.70886075949367%;
    --limitBgEnd_size: 2602.5% 277.5280898876405%;
    --limitBgEnd_ratio: 40 / 89;
    --limitBgEnd_width: 40px;
    --limitBgEnd_height: 89px;

    --limitBgStart_position: 99.9000999000999% 86.70886075949367%;
    --limitBgStart_size: 2602.5% 277.5280898876405%;
    --limitBgStart_ratio: 40 / 89;
    --limitBgStart_width: 40px;
    --limitBgStart_height: 89px;
}

.loadingLogo {
    background-position: var(--loadingLogo_position);
    background-size: var(--loadingLogo_size);
    aspect-ratio: var(--loadingLogo_ratio);
    width: var(--loadingLogo_width);
}

.frbDialogHeader .header {
    background-position: var(--freeRounds_position);
    background-size: var(--freeRounds_size);
    aspect-ratio: var(--freeRounds_ratio);
    width: var(--freeRounds_width);
}

.loadingIcons_2 {
    background-position: var(--loadingIcons_2_position);
    background-size: var(--loadingIcons_2_size);
    aspect-ratio: var(--loadingIcons_2_ratio);
    width: var(--loadingIcons_2_width);
}

.loadingIcons_1 {
    background-position: var(--loadingIcons_1_position);
    background-size: var(--loadingIcons_1_size);
    aspect-ratio: var(--loadingIcons_1_ratio);
    width: var(--loadingIcons_1_width);
}

.dialogBtn {
    background-position: var(--dialogBtn_position);
    background-size: var(--dialogBtn_size);
    aspect-ratio: var(--dialogBtn_ratio);
    width: var(--dialogBtn_width);
}

.hlpFrbIcon,
.frbIcon {
    background-position: var(--frbIcon_position);
    background-size: var(--frbIcon_size);
    aspect-ratio: var(--frbIcon_ratio);
    width: var(--frbIcon_width);
}

.frbIconLogo {
    background-position: var(--frbIconLogo_position);
    background-size: var(--frbIconLogo_size);
    aspect-ratio: var(--frbIconLogo_ratio);
    width: var(--frbIconLogo_width);
}

.errorPicto {
    background-position: var(--error_position);
    background-size: var(--error_size);
    aspect-ratio: var(--error_ratio);
    width: var(--error_width);
}

.infoPicto {
    background-position: var(--info_position);
    background-size: var(--info_size);
    aspect-ratio: var(--info_ratio);
    width: var(--info_width);
}

.limit span:after {
    background-position: var(--limitBgEnd_position);
    background-size: var(--limitBgEnd_size);
    aspect-ratio: var(--limitBgEnd_ratio);
    width: var(--limitBgEnd_width);
}

.limit span:before {
    background-position: var(--limitBgStart_position);
    background-size: var(--limitBgStart_size);
    aspect-ratio: var(--limitBgStart_ratio);
    width: var(--limitBgStart_width);
}
