/* VARIABLES START */
:root {
    --color1: #2cc204; /* labels and headings */
    --color2: #2cc204; /* buttons */
    --color3: #fff; /* labels in gamble */
}
/* VARIABLES END */

/* 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 30px 10px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 30px 10px 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(../Game/Graphics/Images/Backgrounds/GFX_ambientBackground_base.jpg?_t=20251127140111);
    background-size: cover;
    background-position: center;
}

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

/* AMBIENT BG END */

/* LOADING START */
.loading {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 540px;
    margin: 0 auto;
    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: 195px;
    left: 0;
    right: 0;
    width: 600px;
    height: 120px;
    margin: 0 auto;
}

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

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

.loadingText {
    font-size: 15px;
}

.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: 24px;
    line-height: 24px;
    letter-spacing: 1px;
}

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

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

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

.progressBar {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    width: 378px;
    height: 6px;
    background: #112357;
    box-shadow: 0 1px 3px 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: 13px;
    left: 0;
    right: 0;
    width: 912px;
    height: 29px;
    margin: 0 auto;
}

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

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

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

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

.limit span {
    display: inline-block;
    position: relative;
    padding: 0 6px;
    height: 67px;
    font-size: 27px;
    line-height: 57px;
    font-weight: bold;
    color: #000000;
    text-shadow: 1px 1px #fcf6ab;
    letter-spacing: 1px;
    white-space: nowrap;
    background: url(../Game/Graphics/Images/GFX_limitBg.png?_t=20251127140111) 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: 30px;
    left: -29px;
    height: 67px;
}

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

/* DIALOG WINDOW START */
.dialog {
    position: absolute;
    top: 0;
    bottom: 68px;
    left: 0;
    right: 0;
    width: 457px;
    height: 267px;
    border-radius: 8px;
    padding: 10px;
    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: 51px;
    height: 51px;
}

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

.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: 336px;
    height: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

.dialogContent h3 {
    position: absolute;
    top: 8px;
    letter-spacing: 2px;
    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: 21px;
    padding: 5px 0;
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
    max-height: 120px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

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

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

.dialogBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 137px;
    height: 18px;
    font-size: 16px;
    text-align: center;
    border-radius: 25px;
    padding: 16px 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: 16px 0 15px;
}

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

.dialogBtn._disabled:active {
    padding: 16px 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: 18px;
}

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

#responsibleGamingDialog .dialogContent p {
    font-size: 18px;
    padding: 3px 0;
}

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

#responsibleGamingDialog .dialogBtn {
    position: unset;
    width: 93px;
    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: 7px 0;
    margin: 8px 5px;
}

#responsibleGamingDialog .dialogBtn:active {
    padding: 7px 0 6px;
}

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

/* SESSION TIMER DIALOG START */

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

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

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

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

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

.sessionIntervals .plusBtn,
.sessionIntervals .minusBtn {
    width: 27px;
    height: 27px;
    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: 102px;
    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: 7px 0;
    margin: 8px 5px;
}

#cashierDialog .dialogBtn:active {
    padding: 7px 0 6px;
}

#cashierDialog .dialogBtn._disabled:active {
    padding: 7px 0;
}

#cashierDialog .smallCloseBtn {
    top: 9px;
    right: 9px;
}

#cashierDialog #cashierButton {
    background-image: linear-gradient(to bottom, #39d427 0%, #167d0a 50%);
}

#refreshButton {
    font-size: 12px;
    line-height: 19px;
}
/* CASHIER DIALOG END */

/* QUICK SPIN DIALOG START */
#quickspinDialog.quickspinDialogContainer {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    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: 15px;
}

#quickspinDialog .dialogBtn {
    position: unset;
    width: 93px;
    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: 7px 0;
    margin: 8px 5px;
}

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

#quickspinDialog .dialogBtn._disabled:active {
    padding: 7px 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% - 75px);
    pointer-events: none;
}

.freeRoundsBonus._disabled {
    display: none;
}

.frbDialog,
.frbConfirmationDialog {
    border-radius: 15px;
    background: #002542;
    border: 3px 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 45px rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    margin: auto;
    pointer-events: all;
}

.frbDialog {
    position: relative;
    width: 80%;
    max-width: 768px;
    height: auto;
}

.frbDialogHeader {
    position: relative;
    height: 63px;
}

.frbDialogHeader .stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 3px);
    height: 42px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 5%, #435d81 50%, rgba(0, 0, 0, 0) 95%);
    margin: auto;
}

.frbDialogHeader .header {
    position: relative;
    width: 270px;
    height: 63px;
    padding: 0;
    margin: 0 auto;
    z-index: 0;
}

.ffrDialogType .frbDialogHeader .header {
    width: 455px;
}

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

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

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

.frbDialogContent {
    height: auto;
    padding: 30px;
    text-align: center;
}

.frbText._last strong {
    display: none;
}

.frbText {
    padding: 6px 0;
}

.frbText a,
.frbText a:hover {
    font-family: 'Source Sans Pro';
    text-transform: none;
    font-size: 19px;
    color: #57b8ff;
    text-decoration: underline;
}

.frbText a:hover {
    text-decoration: none;
}

.frbText b {
    font-size: 24px;
}

.frbText strong,
.frbText.frbPlatformTransactionFail {
    color: #f4775a;
}

.frbText strong.frbNumber {
    font-size: 45px;
    line-height: 45px;
}

.frbOffersList {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-height: 147px;
    text-align: center;
    margin: 15px 0;
}

.frbOfferItem {
    position: relative;
    width: 114px;
    height: 114px;
    background: #000;
    border: 1px solid #bccce5;
    margin: 0 9px;
    cursor: pointer;
    pointer-events: all;
}

.frbOfferItem .flag {
    width: 100%;
    margin-top: 7px;
}

#frbDialogContentOther2 .frbOfferItem {
    cursor: default;
    pointer-events: none;
}

#frbDialogContentOther .frbOfferItem:hover {
    box-shadow: 0 0 9px #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 6px #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: 45px;
}

.frbBtn {
    width: 165px;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 25px;
    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: 3px 12px;
    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: 36px;
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none;
}

.frbBtn:active {
    line-height: 37px;
}

.frbIcon {
    position: relative;
    container: sidebar / inline-size;
    font-family: 'Source Sans Pro';
    text-transform: uppercase;
    width: 69% !important;
    text-align: center;
    border-radius: 11px;
    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: 30px;
    height: 30px;
    border: 3px 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: 11px;
}

.frbIconText {
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    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: 300px;
    height: auto;
}

.frbConfirmationDialog .frbBtn {
    width: 93px;
    margin: 3px 6px;
}
/* FREE ROUNDS BONUS END */

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

@-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;
    }
}

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

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

    --loadingLogo_position: 0.1218026796589525% 12.5%;
    --loadingLogo_size: 236.83333333333334% 106.66666666666667%;
    --loadingLogo_ratio: 600 / 120;
    --loadingLogo_width: 600px;
    --loadingLogo_height: 120px;

    --featureFreeRounds_position: 62.448132780082986% 1.5151515151515151%;
    --featureFreeRounds_size: 310.94091903719914% 206.4516129032258%;
    --featureFreeRounds_ratio: 457 / 62;
    --featureFreeRounds_width: 457px;
    --featureFreeRounds_height: 62px;

    --freeRounds_position: 52.30234578627281% 98.46153846153847%;
    --freeRounds_size: 526.2962962962963% 203.17460317460316%;
    --freeRounds_ratio: 270 / 63;
    --freeRounds_width: 270px;
    --freeRounds_height: 63px;

    --loadingIcons_2_position: 73.54675652906487% 64.64646464646465%;
    --loadingIcons_2_size: 607.2649572649573% 441.37931034482756%;
    --loadingIcons_2_ratio: 234 / 29;
    --loadingIcons_2_width: 234px;
    --loadingIcons_2_height: 29px;

    --loadingIcons_1_position: 70.34649476228847% 94.94949494949495%;
    --loadingIcons_1_size: 789.4444444444445% 441.37931034482756%;
    --loadingIcons_1_ratio: 180 / 29;
    --loadingIcons_1_width: 180px;
    --loadingIcons_1_height: 29px;

    --ffrFlag_position: 79.84848484848484% 80.34188034188034%;
    --ffrFlag_size: 1406.930693069307% 1163.6363636363637%;
    --ffrFlag_ratio: 101 / 11;
    --ffrFlag_width: 101px;
    --ffrFlag_height: 11px;

    --frbFlag_position: 79.84848484848484% 90.5982905982906%;
    --frbFlag_size: 1406.930693069307% 1163.6363636363637%;
    --frbFlag_ratio: 101 / 11;
    --frbFlag_width: 101px;
    --frbFlag_height: 11px;

    --dialogBtn_position: 82.55451713395638% 1.2820512820512822%;
    --dialogBtn_size: 1037.2262773722628% 256%;
    --dialogBtn_ratio: 137 / 50;
    --dialogBtn_width: 137px;
    --dialogBtn_height: 50px;

    --frbIcon_position: 85.82034149962881% 98.11320754716981%;
    --frbIcon_size: 1920.2702702702702% 170.66666666666666%;
    --frbIcon_ratio: 74 / 75;
    --frbIcon_width: 74px;
    --frbIcon_height: 75px;

    --frbIconLogo_position: 91.45616641901931% 1.9230769230769231%;
    --frbIconLogo_size: 1894.6666666666667% 168.42105263157896%;
    --frbIconLogo_ratio: 75 / 76;
    --frbIconLogo_width: 75px;
    --frbIconLogo_height: 76px;

    --error_position: 95.4014598540146% 1.2987012987012987%;
    --error_size: 2786.274509803922% 250.98039215686273%;
    --error_ratio: 51 / 51;
    --error_width: 51px;
    --error_height: 51px;

    --info_position: 95.4014598540146% 68.83116883116882%;
    --info_size: 2786.274509803922% 250.98039215686273%;
    --info_ratio: 51 / 51;
    --info_width: 51px;
    --info_height: 51px;

    --limitBgEnd_position: 97.69949676491733% 1.639344262295082%;
    --limitBgEnd_size: 4736.666666666667% 191.044776119403%;
    --limitBgEnd_ratio: 30 / 67;
    --limitBgEnd_width: 30px;
    --limitBgEnd_height: 67px;

    --limitBgStart_position: 99.92810927390367% 1.639344262295082%;
    --limitBgStart_size: 4736.666666666667% 191.044776119403%;
    --limitBgStart_ratio: 30 / 67;
    --limitBgStart_width: 30px;
    --limitBgStart_height: 67px;
}

.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);
}

.ffrDialogType .frbDialogHeader .header {
    background-position: var(--featureFreeRounds_position);
    background-size: var(--featureFreeRounds_size);
    aspect-ratio: var(--featureFreeRounds_ratio);
    width: var(--featureFreeRounds_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);
}

.ffrFlag {
    background-position: var(--ffrFlag_position);
    background-size: var(--ffrFlag_size);
    aspect-ratio: var(--ffrFlag_ratio);
    width: var(--ffrFlag_width);
}

.frbFlag {
    background-position: var(--frbFlag_position);
    background-size: var(--frbFlag_size);
    aspect-ratio: var(--frbFlag_ratio);
    width: var(--frbFlag_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);
}
