/* SPLASHSCREEN */
#splashScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_splashScreenBackground.jpg?_t=20250701002203);
    background-size: cover;
    background-position: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 1s;
    transform: translate3d(0, 0, 0);
}

#splashScreen .screenOverlay {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(6, 17, 53, 0.9) 85%, rgba(6, 17, 53, 0.95) 100%);
}

#splashScreen._disabled {
    opacity: 0;
}

#splashScreen._loaded {
    opacity: 1;
    transition: none;
}

.paytablePage.splashScreen {
    top: unset;
    bottom: 144px;
    width: 100%;
    height: 408px;
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
}

.paytablePage.splashScreen .customContent {
    height: 100%;
}

#splashScreen .splashLoadingInfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
    text-align: center;
    margin: 0 auto;
}

#splashScreen .splashProgressBarHolder {
    margin-top: 22px;
}

#splashScreen._loaded .splashProgressBarHolder {
    display: none;
}

#splashScreen._error .splashProgressBarHolder {
    margin-top: 12px;
}

#splashScreen .splashProgressBar {
    width: 504px;
    height: 8px;
    background: #112357;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
}

#splashScreen._error .splashProgressBar {
    display: block;
    width: 100%;
    height: auto;
    font-size: 24px;
    line-height: 28px;
    color: #e4161a;
    letter-spacing: 1px;
    background: none;
    box-shadow: none;
    box-sizing: border-box;
    padding: 0 20px;
}

#splashScreen .splashProgressBarOverlay {
    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 */
}

#splashScreen._error .splashProgressBarOverlay {
    background: none;
}

#splashScreen #splashContinueButton {
    display: none;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    font-weight: bold;
    color: #072543;
    text-shadow: 0 1px 1px #fff;
    text-align: center;
    letter-spacing: 1px;
    border-radius: 33px;
    border: 2px solid #fff;
    box-shadow: 0 0 1px #fff;
    background-image: -ms-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -moz-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -o-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #f4f6fa),
        color-stop(50, #809fc9),
        color-stop(75, #809fc9),
        color-stop(100, #f4f6fa)
    );
    background-image: -webkit-linear-gradient(top, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    background-image: linear-gradient(to bottom, #f4f6fa 0%, #809fc9 50%, #809fc9 75%, #f4f6fa 100%);
    padding: 0 60px;
    margin: 4px 16px;
    cursor: pointer;
    animation: teaseContinueBtn 1s infinite 0.5s;
}

#splashScreen._loaded #splashContinueButton {
    display: inline-block;
}

#splashScreen #splashContinueButton:hover {
    box-shadow: 0 0 8px #ffffff;
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    animation: none;
}

#splashScreen #splashContinueButton:active {
    line-height: 41px;
}

@-webkit-keyframes teaseContinueBtn {
    50% {
        box-shadow: 0 0 8px #ffffff;
        -webkit-filter: brightness(1.3);
        filter: brightness(1.3);
    }
}

@keyframes teaseContinueBtn {
    50% {
        box-shadow: 0 0 8px #ffffff;
        -webkit-filter: brightness(1.3);
        filter: brightness(1.3);
    }
}

#splashScreen #splashContinueButton,
#splashScreen #splashContinueButton div {
    transform: translate3d(0, 0, 0);
}

#splashScreen .synotLogo {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    pointer-events: none;
}

/* custom */
.splashScreen .gameLogo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.splashScreen .buyFeatureRibbon {
    position: absolute;
    top: 0;
    left: 0;
}

.splashScreen .buyFeatureRibbon div {
    position: absolute;
    top: 38px;
    left: 106px;
    width: 209px;
    height: 55px;
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    color: #ffffbf;
    text-shadow:
        -1px -1px 0 #bd7742,
        1px -1px 0 #bd7742,
        -1px 1px 0 #bd7742,
        1px 1px 0 #bd7742;
    text-align: center;
}

.splashScreen .megawaysLogo {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 auto;
}

.splashScreen.paytablePage > * {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.splashScreen.paytablePage > * > * {
    display: flex;
    justify-content: center;
}

.splashScreen .splashScreenTitle {
    align-items: flex-end;
}

.splashScreen .splashScreenTitle,
.splashScreen .splashScreenTitle svg {
    height: 56px;
    font-size: 48px;
}

.splashScreen .bonusContainer .splashScreenTitle,
.splashScreen .collectorContainer .splashScreenTitle {
    min-height: 56px;
}

.splashScreen .megawaysContainer .splashScreenTitle svg {
    left: 0;
    bottom: 4px;
    width: 115%;
    position: absolute;
}

.splashScreen .splashScreenImage {
    margin-top: -24px;
    height: 306px;
    display: flex;
}

.splashScreen .collectorContainer .splashScreenImage {
    align-items: center;
}

.splashScreen .megawaysContainer .splashScreenImage {
    position: relative;
    height: 309px;
    margin-top: 12px;
}

.splashScreen .megawaysContainer .splashScreenImage > * {
    position: absolute;
    top: 0;
}

.splashScreen svg {
    width: 100%;
    height: 120px;
    font-size: 33px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.splashScreen svg .description {
    paint-order: stroke;
    stroke-width: 4px;
    stroke-linejoin: round;
    stroke: #000;
}

.safari .splashScreen svg .description {
    stroke-width: 1px;
}

.splashScreen .megawaysContainer .splashScreenDescription svg {
    position: absolute;
    bottom: -67px;
}
.splashScreen .megawaysContainer .winUpTo[style] {
    position: relative;
}
.splashScreen .megawaysContainer .winUpTo[style]:before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 10%;
    left: 0;
    background: #ffc764;
    filter: blur(50px);
    z-index: -1;
}
.splashScreen .megawaysContainer .winUpTo[style] {
    font-size: 1.5em !important;
    line-height: 1.1em;
    white-space: nowrap;
    align-self: flex-end;
    margin: 0 0 -0.15em;
}
.splashScreen .megawaysContainer .winUpTo[style] .stroke {
    line-height: inherit;
    font-size: inherit;
    -webkit-text-stroke: 0.075em #000;
}
.splashScreen .megawaysContainer .winUpTo[style] .text {
    background-image: linear-gradient(
        to bottom,
        #f6f2c0 5%,
        #cb9b51 22%,
        #f6e27a 45%,
        #f6f2c0 50%,
        #f6e27a 55%,
        #cb9b51 78%,
        #f6f2c0 100%
    );
    color: transparent;
    -webkit-background-clip: text;
    line-height: inherit;
    font-size: inherit;
}
.splashScreen .megawaysContainer .splashScreenDescription {
    font-size: 51px;
    font-weight: bold;
    margin-top: -52px;
    display: flex;
}

.splashScreen .megawaysContainer .splashScreenDescription svg {
    left: 0;
    bottom: -6px;
    width: 115%;
    font-size: 51px;
    position: absolute;
}

.splashScreen .megawaysContainer .splashScreenDescription svg text {
    transform: translateX(10px);
}

.splashScreen .megawaysContainer .maxWaysContainer,
.splashScreen .megawaysContainer .winUpTo {
    position: relative;
}

.splashScreen .megawaysContainer .maxWaysContainer {
    margin-right: 0.2em;
}

.splashScreen .megawaysContainer .winUpTo {
    margin-right: 0.4em;
}

.splashScreen .megawaysContainer .maxWaysText,
.splashScreen .megawaysContainer .winUpToText {
    visibility: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
}

.splashScreen .megawaysContainer .x10000 {
    margin: -56px -125px -51px;
}

.splashScreen .splashScreenDescription {
    margin-top: -18px;
    text-align: center;
    font-size: 36px;
    position: relative;
    width: 100%;
    display: block;
}
.splashScreen .maxWaysContainer,
.splashScreen .megawaysContainer .winUpTo {
    margin-top: -32px;
    text-align: center;
    font-size: 43px;
    position: relative;
    display: inline-block;
}

.splashScreen .megawaysContainer .winUpTo {
    font-size: 52px;
}

.splashScreen .megawaysContainer .winUpTo {
    margin-top: 25px;
    white-space: nowrap;
    z-index: 1;
}

.splashScreen .splashScreenDescription .line {
    height: 36px;
    position: relative;
}

.splashScreen .splashScreenDescription .stroke,
.splashScreen .splashScreenDescription .text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 35px;
    font-weight: bold;
}

.splashScreen .maxWaysContainer .stroke,
.splashScreen .megawaysContainer .winUpTo .stroke {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.splashScreen .maxWaysContainer .stroke,
.splashScreen .maxWaysContainer .text,
.splashScreen .megawaysContainer .winUpTo .stroke,
.splashScreen .megawaysContainer .winUpTo .text {
    line-height: 36px;
    font-weight: bold;
}

.splashScreen .megawaysContainer .winUpTo .stroke,
.splashScreen .megawaysContainer .winUpTo .text {
    line-height: 44px;
}

.splashScreen .megawaysContainer .winUpTo .text {
    position: relative;
}

.splashScreen .splashScreenDescription .stroke,
.splashScreen .maxWaysContainer .stroke,
.splashScreen .megawaysContainer .winUpTo .stroke {
    -webkit-text-stroke: 2px #000;
}
.splashScreen .splashScreenDescription .text,
.splashScreen .maxWaysContainer .text {
    background: repeating-linear-gradient(#fff 0, #ffffed 9px, #ffc764 25px, #ffc764 36px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splashScreen .winUpTo .text {
    background: repeating-linear-gradient(#fff 0, #ffffed 9px, #ffc764 28px, #ffc764 44px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.splashScreen .collectorContainer svg .description2 {
    transform: translate(-0.28em, 0);
}

.splashScreen .collectorContainer svg .description2 {
    transform: translate(-0.28em, 0);
}

/****************** splashScreen ********************/

.splScr {
    background-image: url(../Game/Graphics/SpriteSheets/CSS_splashScreen.png?_t=20250701002203);
    background-repeat: no-repeat;
}

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

.bonus {
    background-position: -1px -670px;
    width: 207px;
    height: 309px;
}

.buyFeatureRibbon {
    background-position: -556px -261px;
    width: 329px;
    height: 120px;
}

.collector {
    background-position: -556px -383px;
    width: 315px;
    height: 285px;
}

.gameLogo {
    background-position: -602px -116px;
    width: 355px;
    height: 143px;
}

.maxWays {
    background-position: -210px -486px;
    width: 236px;
    height: 61px;
}

.megawaysLogo {
    background-position: -602px -1px;
    width: 357px;
    height: 113px;
}

.synotLogo {
    background-position: -210px -423px;
    width: 304px;
    height: 61px;
}

.wheel {
    background-position: -1px -1px;
    width: 599px;
    height: 241px;
}

.x10000 {
    background-position: -1px -244px;
    width: 553px;
    height: 177px;
}

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

/* el-GR */
body[language='el'] #splashContinueButton,
body[language='el-GR'] #splashContinueButton,
body[language='el'] #splashScreen._error .splashProgressBar,
body[language='el-GR'] #splashScreen._error .splashProgressBar {
    font-family: 'Bebas Neue Greek';
}

/* vi-VN */
body[language='vi'] #splashContinueButton,
body[language='vi-VN'] #splashContinueButton,
body[language='vi'] #splashScreen._error .splashProgressBar,
body[language='vi-VN'] #splashScreen._error .splashProgressBar {
    font-family: 'Bison Demi Bold';
}

/* ************** portrait ************ */
.portrait #splashScreen .gameLogo {
    top: 102px;
}

.portrait .splashScreen.paytablePage {
    padding: 0;
}

.portrait .paytablePage.splashScreen {
    height: auto;
    bottom: -114px;
    display: flex;
    transform: scale(0.8);
    flex-wrap: wrap;
}

.portrait #splashScreen .megawaysContainer {
    order: 1;
    margin-top: 24px;
}

.portrait #splashScreen .symbol.bonusSymbol {
    display: flex;
    flex-direction: row;
    width: auto;
    align-items: center;
    top: auto;
}

.portrait .splashScreenPage .splashScreenSymbolImageDescription {
    position: relative;
}
.portrait .splashScreenPage .splashScreenSymbolImageDescription .bonusSymbolDescription {
    left: -469px !important;
    top: 3px !important;
}
.portrait .splashScreenPage .splashScreenSymbolImageDescription .text {
    font-size: 44px;
    font-weight: bold;
}
.portrait .splashScreen .symbol.bonusSymbol .splashScreenSymbolImageDescription {
    position: relative;
}

.portrait .splashScreenPage .splashScreenSymbolImageDescription:nth-child(2) {
    left: auto;
    bottom: auto;
}
.portrait .splashScreenPage .splashScreenSymbolImageDescription:nth-child(3) {
    position: absolute !important;
    bottom: -442px;
    left: -68px;
}

.portrait .splashScreenPage .splashScreenSymbolImageTitle {
    position: relative;
    top: 22px;
}

.portrait .splashScreen .symbol {
    margin-top: -18px;
}
.portrait #splashScreen .splashLoadingInfo {
    width: 100%;
    height: 200px;
    z-index: 1;
}

.portrait #splashScreen .synotLogo {
    bottom: 56px;
}

/* special resolutions fix */
.portrait.mobile-xs .paytablePage.splashScreen {
    transform: scale(0.6);
    margin: 0;
    bottom: -84px;
}

.portrait.tablet .paytablePage.splashScreen,
.portrait.tablet-xs .paytablePage.splashScreen {
    transform: scale(0.44);
    bottom: 96px;
}

.portrait.safari:not(.mobile-xs):not(.tablet):not(.tablet-xs) .paytablePage.splashScreen {
    transform: scale(0.9);
}

body[language='uk'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='uk-UA'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 32px;
}
body[language='uk'] .splashScreen .maxWaysContainer,
body[language='uk-UA'] .splashScreen .maxWaysContainer {
    font-size: 38px;
}

body[language='sk'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='sk-SK'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 28px;
}

body[language='sk'] .splashScreen .buyFeatureRibbon div,
body[language='sk-SK'] .splashScreen .buyFeatureRibbon div {
    font-size: 23px;
}
body[language='sk'] .splashScreen .maxWaysContainer,
body[language='sk-SK'] .splashScreen .maxWaysContainer {
    font-size: 32px;
}

body[language='pl'] .splashScreen .maxWaysContainer,
body[language='pl-PL'] .splashScreen .maxWaysContainer {
    font-size: 24px;
}
body[language='pl'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='pl-PL'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 22px;
}

body[language='ro'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='ro-RO'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 24px;
}

body[language='ro'] .splashScreen .maxWaysContainer,
body[language='ro-RO'] .splashScreen .maxWaysContainer {
    font-size: 30px;
}
body[language='ro'] .splashScreen .megawaysContainer .winUpTo,
body[language='ro-RO'] .splashScreen .megawaysContainer .winUpTo {
    font-size: 36px;
}
body[language='de'] .splashScreen .maxWaysContainer,
body[language='de-DE'] .splashScreen .maxWaysContainer {
    font-size: 28px;
}
body[language='ro'] .splashScreen .megawaysContainer .winUpTo,
body[language='de-DE'] .splashScreen .megawaysContainer .winUpTo {
    font-size: 34px;
}

body[language='sr'] .splashScreen .maxWaysContainer,
body[language='sr-Latn-RS'] .splashScreen .maxWaysContainer {
    font-size: 36px;
}

body[language='da'] .splashScreen .maxWaysContainer,
body[language='da-DK'] .splashScreen .maxWaysContainer {
    font-size: 32px;
}

body[language='es'] .splashScreen .maxWaysContainer,
body[language='es-ES'] .splashScreen .maxWaysContainer {
    font-size: 29px;
}

body[language='es'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='es-ES'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 24px;
}

body[language='et'] .splashScreen .maxWaysContainer,
body[language='et-EE'] .splashScreen .maxWaysContainer {
    font-size: 26px;
}

body[language='fi'] .splashScreen .maxWaysContainer,
body[language='fi-FI'] .splashScreen .maxWaysContainer {
    font-size: 33px;
}

body[language='ka'] .splashScreen .maxWaysContainer,
body[language='ka-GE'] .splashScreen .maxWaysContainer {
    font-size: 40px;
}

body[language='ka'] .splashScreen .splashScreenDescription,
body[language='ka-GE'] .splashScreen .splashScreenDescription {
    font-size: 28px;
}

body[language='ka'] .splashScreen .maxWaysContainer .text,
body[language='ka-GE'] .splashScreen .maxWaysContainer .text {
    background: repeating-linear-gradient(#fff 0, #ffffed 5px, #ffc764 24px, #ffc764 50px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[language='ka'] .splashScreen .maxWaysContainer .text,
body[language='ka'] .splashScreen .maxWaysContainer .stroke,
body[language='ka-GE'] .splashScreen .maxWaysContainer .text,
body[language='ka-GE'] .splashScreen .maxWaysContainer .stroke {
    line-height: 50px;
}

body[language='ka'] .splashScreen .winUpTo .text,
body[language='ka-GE'] .splashScreen .winUpTo .text {
    background: repeating-linear-gradient(#fff 0, #ffffed 5px, #ffc764 24px, #ffc764 65px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[language='ka'] .splashScreen .winUpTo .text,
body[language='ka'] .splashScreen .winUpTo .stroke,
body[language='ka-GE'] .splashScreen .winUpTo .text,
body[language='ka-GE'] .splashScreen .winUpTo .stroke {
    line-height: 65px;
}

body[language^='ka'] .splashScreen .buyFeatureRibbon div {
    font-size: 18px;
}

body[language='lt'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='lt-LT'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 28px;
}
body[language='lt'] .splashScreen .buyFeatureRibbon div,
body[language='lt-LT'] .splashScreen .buyFeatureRibbon div {
    font-size: 25px;
}
body[language='lt'] .splashScreen .maxWaysContainer,
body[language='lt-LT'] .splashScreen .maxWaysContainer {
    font-size: 36px;
}
body[language='lt'] .splashScreen .megawaysContainer .winUpTo,
body[language='lt-LT'] .splashScreen .megawaysContainer .winUpTo {
    font-size: 40px;
}
body[language='lv'] .splashScreen .maxWaysContainer,
body[language='lv-LV'] .splashScreen .maxWaysContainer {
    font-size: 36px;
}
body[language='lv'] .splashScreen .megawaysContainer .winUpTo,
body[language='lv-LV'] .splashScreen .megawaysContainer .winUpTo {
    font-size: 40px;
}

body[language='vi'] .splashScreen .maxWaysContainer,
body[language='vi-VN'] .splashScreen .maxWaysContainer {
    font-size: 34px;
}

body[language='vi'] .splashScreen .buyFeatureRibbon div,
body[language='vi-VN'] .splashScreen .buyFeatureRibbon div {
    font-size: 25px;
}
body[language='vi'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='vi-VN'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 30px;
}

body[language='tr'] .splashScreen .maxWaysContainer,
body[language='tr-TR'] .splashScreen .maxWaysContainer {
    font-size: 38px;
}

body[language='nl'] .splashScreen .maxWaysContainer,
body[language='nl-NL'] .splashScreen .maxWaysContainer {
    font-size: 28px;
}

body[language='nl'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='nl-NL'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 30px;
}

body[language='bg'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='bg-BG'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 28px;
}
body[language='bg'] .splashScreen .buyFeatureRibbon div,
body[language='bg-BG'] .splashScreen .buyFeatureRibbon div {
    font-size: 25px;
}
body[language='bg'] .splashScreen .winUpTo,
body[language='bg-BG'] .splashScreen .winUpTo {
    font-size: 40px;
}

body[language='el'] .splashScreen .splashScreenDescription,
body[language='el-GR'] .splashScreen .splashScreenDescription {
    font-size: 28px;
}

body[language='el'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='el-GR'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 16px;
}

body[language='el'] .splashScreen .maxWaysContainer,
body[language='el-GR'] .splashScreen .maxWaysContainer {
    font-size: 24px;
}

body[language='el'] .splashScreen .winUpTo,
body[language='el-GR'] .splashScreen .winUpTo {
    font-size: 24px;
}

body[language='el'] .splashScreen .buyFeatureRibbon div,
body[language='el-GR'] .splashScreen .buyFeatureRibbon div {
    font-size: 19px;
}

body[language='fr'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='fr-FR'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 21px;
}

body[language='fr'] .splashScreen .buyFeatureRibbon div,
body[language='fr-FR'] .splashScreen .buyFeatureRibbon div {
    font-size: 25px;
}

body[language='mk'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='mk-MK'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 26px;
}

body[language='bs'] .splashScreen .maxWaysContainer,
body[language='bs-Latn-BA'] .splashScreen .maxWaysContainer {
    font-size: 36px;
}

body[language='it'] .splashScreen .collectorContainer .splashScreenDescription,
body[language='it-IT'] .splashScreen .collectorContainer .splashScreenDescription {
    font-size: 32px;
}

body[language^='ja'] .splashScreen .buyFeatureRibbon div {
    font-size: 21px;
}

body[language='ja'] .splashScreen .maxWaysContainer,
body[language='ja-JP'] .splashScreen .maxWaysContainer {
    font-size: 28px;
}

body[language^='ka'] #splashScreen #splashContinueButton {
    font-size: 22px;
}

body[language^='ja'] #splashScreen #splashContinueButton {
    font-size: 22px;
}

body[language^='el'] #splashScreen #splashContinueButton {
    font-size: 24px;
}

body[language^='it'] .splashScreen .maxWaysContainer {
    font-size: 28px;
}

body[language^='nl'] .splashScreen .splashScreenDescription {
    font-size: 31px;
}

body[language^='pt-BR'] .splashScreen .splashScreenDescription {
    font-size: 28px;
}
