/* SPLASHSCREEN */
#splashScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_ambientBackground_splash.jpg?_t=20250701034450);
    background-size: cover;
    background-position: center;
    z-index: 9999999;
    opacity: 1;
    overflow: hidden;
    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;
}

#root:has(#splashScreen) #screen {
    visibility: hidden;
}

#splashScreen .paytablePage {
    position: unset;
    width: 100%;
    height: calc(100% - 188px);
    box-sizing: border-box;
    padding: 0 56px;
}

#splashScreen .paytablePage .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 .splashContent {
    margin-top: 93px;
    display: flex;
    width: 100%;
    height: calc(100% - 140px - 93px);
    justify-content: center;
    align-items: center;
}

#splashScreen .gameLogo {
    position: absolute;
    top: 0;
    left: 326px;
}

#splashScreen .splReels {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#splashScreen .splStarsContainer {
    margin: 0 -73px -16px 0;
}

#splashScreen .splReels .splImageContainer,
#splashScreen .splReels .splStarsContainer,
.scatterRespinsPage .splImageContainer,
.scatterRespinsPage .splStarsContainer {
    position: relative;
}

#splashScreen .splReels .splImageContainer > *,
#splashScreen .splReels .splStarsContainer > *,
.scatterRespinsPage .splImageContainer > *,
.scatterRespinsPage .splStarsContainer > * {
    position: absolute;
    top: 0;
    left: 0;

    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-iteration-count: infinite;
    animation-duration: 8s;
    animation-fill-mode: forwards;
    opacity: 0;
    animation-name: fadeSplashScreenImage;
}

.splashScreen .splImageContainer .splReel4,
.scatterRespinsPage .splReel4 {
    animation-delay: 6s;
}

.splashScreen .splImageContainer .splReel3,
.scatterRespinsPage .splReel3 {
    animation-delay: 4s;
}

.splashScreen .splImageContainer .splReel2,
.scatterRespinsPage .splReel2 {
    animation-delay: 2s;
}

.splashScreen .splImageContainer .splReel1,
.scatterRespinsPage .splReel1 {
    animation-delay: 0s;
    opacity: 1;
}

.splashScreen .splStarsContainer .splStars4,
.scatterRespinsPage .splStars4 {
    animation-delay: 6s;
}

.splashScreen .splStarsContainer .splStars3,
.scatterRespinsPage .splStars3 {
    animation-delay: 4s;
}

.splashScreen .splStarsContainer .splStars2,
.scatterRespinsPage .splStars2 {
    animation-delay: 2s;
}

.splashScreen .splStarsContainer .splStars1,
.scatterRespinsPage .splStars1 {
    animation-delay: 0s;
    opacity: 1;
}

@keyframes fadeSplashScreenImage {
    0% {
        opacity: 0;
    }
    12.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    37.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

#splashScreen .symbolDescriptionContainer {
    position: relative;
    text-align: center;
    font-size: 44px;
    letter-spacing: 2px;
}

#splashScreen .symbolDescription.stroke {
    -webkit-text-stroke: 5px #ff0800;
    position: absolute;
    width: 100%;
    font-weight: bold;
    text-shadow: 0px 0px 21px black;
}

#splashScreen .symbolDescription.text {
    color: #ffff39;
    z-index: 1;
    font-weight: bold;
    position: relative;
}

#splashScreen .splScatterContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    width: 310px;
}

.portrait #splashScreen .splScatterContainer {
    flex-direction: row;
    width: 100%;
    gap: 2em;
}

.portrait.tablet #splashScreen .splScatterContainer {
    flex-direction: column;
    margin: 220px 0 0 30px;
    gap: 1em;
}

.portrait #splashScreen .splashContent {
    transform: scale(0.9);
    height: 100%;
    margin: 0 0 110px 0;
    flex-direction: column;
}

.portrait.tablet #splashScreen .splashContent {
    transform: scale(0.69);
    height: 100%;
    margin: 0 0 110px 0;
    flex-direction: row;
}

.portrait.extendPortrait #splashScreen .splashContent {
    transform: scale(0.9);
    height: 100%;
    margin: 0 0 110px 0;
    flex-direction: column;
}

.portrait.mobile-xs #splashScreen .splashContent {
    transform: scale(0.74);
    height: 100%;
    margin: 0 0 110px 0;
    flex-direction: column;
}

.portrait #splashScreen .symbolDescriptionContainer {
    font-size: 38px;
}

.portrait.mobile-xs #splashScreen .gameLogo,
.portrait.tablet #splashScreen .gameLogo {
    top: 30px;
    left: 50%;
    translate: -50%;
    transform: scale(1);
}

.portrait #splashScreen .gameLogo {
    top: calc(50% - 560px);
    left: 50%;
    translate: -50%;
    transform: scale(1.2);
}

.portrait #splashScreen .splReels {
    width: 100%;
    height: auto;
    align-items: center;
    flex-direction: column;
}

.portrait #splashScreen .splStarsContainer {
    margin: 0 0 -106px 0;
}

.portrait .splScr.splScatter {
    height: 100%;
    max-height: var(--splScatter_height);
}

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

:root {
    --splReel1_position: 0.10775862068965517% 0.06693440428380187%;
    --splReel1_size: 230.15427769985976% 421.2903225806452%;
    --splReel1_ratio: 713 / 465;
    --splReel1_width: 713px;
    --splReel1_height: 465px;

    --splReel2_position: 0.10775862068965517% 31.258366800535477%;
    --splReel2_size: 230.15427769985976% 421.2903225806452%;
    --splReel2_ratio: 713 / 465;
    --splReel2_width: 713px;
    --splReel2_height: 465px;

    --splReel3_position: 0.10775862068965517% 62.44979919678715%;
    --splReel3_size: 230.15427769985976% 421.2903225806452%;
    --splReel3_ratio: 713 / 465;
    --splReel3_width: 713px;
    --splReel3_height: 465px;

    --splReel4_position: 0.10775862068965517% 93.64123159303882%;
    --splReel4_size: 230.15427769985976% 421.2903225806452%;
    --splReel4_ratio: 713 / 465;
    --splReel4_width: 713px;
    --splReel4_height: 465px;

    --gameLogo_position: 0.08787346221441125% 99.94640943193998%;
    --gameLogo_size: 326.24254473161034% 2106.451612903226%;
    --gameLogo_ratio: 503 / 93;
    --gameLogo_width: 503px;
    --gameLogo_height: 93px;

    --synotLogo_position: 37.771129394166046% 98.26132771338251%;
    --synotLogo_size: 539.8026315789474% 3211.4754098360654%;
    --synotLogo_ratio: 304 / 61;
    --synotLogo_width: 304px;
    --synotLogo_height: 61px;

    --splStars1_position: 52.45781364636831% 0.06596306068601583%;
    --splStars1_size: 590.2877697841726% 442.21218961625283%;
    --splStars1_ratio: 278 / 443;
    --splStars1_width: 278px;
    --splStars1_height: 443px;

    --splStarsPortrait1_position: 65.59633027522936% 27.934714375392343%;
    --splStarsPortrait1_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait1_ratio: 551 / 366;
    --splStarsPortrait1_width: 551px;
    --splStarsPortrait1_height: 366px;

    --splStarsPortrait2_position: 91.19266055045871% 0.06277463904582549%;
    --splStarsPortrait2_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait2_ratio: 551 / 366;
    --splStarsPortrait2_width: 551px;
    --splStarsPortrait2_height: 366px;

    --splStarsPortrait3_position: 65.59633027522936% 50.9730069052103%;
    --splStarsPortrait3_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait3_ratio: 551 / 366;
    --splStarsPortrait3_width: 551px;
    --splStarsPortrait3_height: 366px;

    --splStarsPortrait4_position: 74.31192660550458% 74.01129943502825%;
    --splStarsPortrait4_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait4_ratio: 551 / 366;
    --splStarsPortrait4_width: 551px;
    --splStarsPortrait4_height: 366px;

    --splStars2_position: 92.9567131327953% 24.274406332453825%;
    --splStars2_size: 590.2877697841726% 442.21218961625283%;
    --splStars2_ratio: 278 / 443;
    --splStars2_width: 278px;
    --splStars2_height: 443px;

    --splScatter_position: 88.53948287910552% 46.5863453815261%;
    --splScatter_size: 781.4285714285714% 906.9444444444445%;
    --splScatter_ratio: 210 / 216;
    --splScatter_width: 210px;
    --splScatter_height: 216px;

    --splStars3_position: 99.92663242846662% 67.87598944591029%;
    --splStars3_size: 590.2877697841726% 442.21218961625283%;
    --splStars3_ratio: 278 / 443;
    --splStars3_width: 278px;
    --splStars3_height: 443px;

    --splStars4_position: 99.92663242846662% 97.16358839050132%;
    --splStars4_size: 590.2877697841726% 442.21218961625283%;
    --splStars4_ratio: 278 / 443;
    --splStars4_width: 278px;
    --splStars4_height: 443px;
}

.splScr:is(
        .splReel1,
        .splReel2,
        .splReel3,
        .splReel4,
        .gameLogo,
        .synotLogo,
        .splStars1,
        .splStarsPortrait1,
        .splStarsPortrait2,
        .splStarsPortrait3,
        .splStarsPortrait4,
        .splStars2,
        .splScatter,
        .splStars3,
        .splStars4
    ) {
    background-image: url(../Game/Graphics/SpriteSheets/CSS_splashScreen-0.png?_t=20250701034450);

    --splReel1_position: 0.10775862068965517% 0.06693440428380187%;
    --splReel1_size: 230.15427769985976% 421.2903225806452%;
    --splReel1_ratio: 713 / 465;
    --splReel1_width: 713px;
    --splReel1_height: 465px;

    --splReel2_position: 0.10775862068965517% 31.258366800535477%;
    --splReel2_size: 230.15427769985976% 421.2903225806452%;
    --splReel2_ratio: 713 / 465;
    --splReel2_width: 713px;
    --splReel2_height: 465px;

    --splReel3_position: 0.10775862068965517% 62.44979919678715%;
    --splReel3_size: 230.15427769985976% 421.2903225806452%;
    --splReel3_ratio: 713 / 465;
    --splReel3_width: 713px;
    --splReel3_height: 465px;

    --splReel4_position: 0.10775862068965517% 93.64123159303882%;
    --splReel4_size: 230.15427769985976% 421.2903225806452%;
    --splReel4_ratio: 713 / 465;
    --splReel4_width: 713px;
    --splReel4_height: 465px;

    --gameLogo_position: 0.08787346221441125% 99.94640943193998%;
    --gameLogo_size: 326.24254473161034% 2106.451612903226%;
    --gameLogo_ratio: 503 / 93;
    --gameLogo_width: 503px;
    --gameLogo_height: 93px;

    --synotLogo_position: 37.771129394166046% 98.26132771338251%;
    --synotLogo_size: 539.8026315789474% 3211.4754098360654%;
    --synotLogo_ratio: 304 / 61;
    --synotLogo_width: 304px;
    --synotLogo_height: 61px;

    --splStars1_position: 52.45781364636831% 0.06596306068601583%;
    --splStars1_size: 590.2877697841726% 442.21218961625283%;
    --splStars1_ratio: 278 / 443;
    --splStars1_width: 278px;
    --splStars1_height: 443px;

    --splStarsPortrait1_position: 65.59633027522936% 27.934714375392343%;
    --splStarsPortrait1_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait1_ratio: 551 / 366;
    --splStarsPortrait1_width: 551px;
    --splStarsPortrait1_height: 366px;

    --splStarsPortrait2_position: 91.19266055045871% 0.06277463904582549%;
    --splStarsPortrait2_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait2_ratio: 551 / 366;
    --splStarsPortrait2_width: 551px;
    --splStarsPortrait2_height: 366px;

    --splStarsPortrait3_position: 65.59633027522936% 50.9730069052103%;
    --splStarsPortrait3_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait3_ratio: 551 / 366;
    --splStarsPortrait3_width: 551px;
    --splStarsPortrait3_height: 366px;

    --splStarsPortrait4_position: 74.31192660550458% 74.01129943502825%;
    --splStarsPortrait4_size: 297.82214156079857% 535.2459016393443%;
    --splStarsPortrait4_ratio: 551 / 366;
    --splStarsPortrait4_width: 551px;
    --splStarsPortrait4_height: 366px;

    --splStars2_position: 92.9567131327953% 24.274406332453825%;
    --splStars2_size: 590.2877697841726% 442.21218961625283%;
    --splStars2_ratio: 278 / 443;
    --splStars2_width: 278px;
    --splStars2_height: 443px;

    --splScatter_position: 88.53948287910552% 46.5863453815261%;
    --splScatter_size: 781.4285714285714% 906.9444444444445%;
    --splScatter_ratio: 210 / 216;
    --splScatter_width: 210px;
    --splScatter_height: 216px;

    --splStars3_position: 99.92663242846662% 67.87598944591029%;
    --splStars3_size: 590.2877697841726% 442.21218961625283%;
    --splStars3_ratio: 278 / 443;
    --splStars3_width: 278px;
    --splStars3_height: 443px;

    --splStars4_position: 99.92663242846662% 97.16358839050132%;
    --splStars4_size: 590.2877697841726% 442.21218961625283%;
    --splStars4_ratio: 278 / 443;
    --splStars4_width: 278px;
    --splStars4_height: 443px;
}

.splScr.splReel1 {
    background-position: var(--splReel1_position);
    background-size: var(--splReel1_size);
    aspect-ratio: var(--splReel1_ratio);
    width: var(--splReel1_width);
}

.splScr.splReel2 {
    background-position: var(--splReel2_position);
    background-size: var(--splReel2_size);
    aspect-ratio: var(--splReel2_ratio);
    width: var(--splReel2_width);
}

.splScr.splReel3 {
    background-position: var(--splReel3_position);
    background-size: var(--splReel3_size);
    aspect-ratio: var(--splReel3_ratio);
    width: var(--splReel3_width);
}

.splScr.splReel4 {
    background-position: var(--splReel4_position);
    background-size: var(--splReel4_size);
    aspect-ratio: var(--splReel4_ratio);
    width: var(--splReel4_width);
}

.splScr.gameLogo {
    background-position: var(--gameLogo_position);
    background-size: var(--gameLogo_size);
    aspect-ratio: var(--gameLogo_ratio);
    width: var(--gameLogo_width);
}

.splScr.synotLogo {
    background-position: var(--synotLogo_position);
    background-size: var(--synotLogo_size);
    aspect-ratio: var(--synotLogo_ratio);
    width: var(--synotLogo_width);
}

.splScr.splStars1 {
    background-position: var(--splStars1_position);
    background-size: var(--splStars1_size);
    aspect-ratio: var(--splStars1_ratio);
    width: var(--splStars1_width);
}

.portrait .splScr.splStars1 {
    background-position: var(--splStarsPortrait1_position);
    background-size: var(--splStarsPortrait1_size);
    aspect-ratio: var(--splStarsPortrait1_ratio);
    width: var(--splStarsPortrait1_width);
}

.portrait .splScr.splStars2 {
    background-position: var(--splStarsPortrait2_position);
    background-size: var(--splStarsPortrait2_size);
    aspect-ratio: var(--splStarsPortrait2_ratio);
    width: var(--splStarsPortrait2_width);
}

.portrait .splScr.splStars3 {
    background-position: var(--splStarsPortrait3_position);
    background-size: var(--splStarsPortrait3_size);
    aspect-ratio: var(--splStarsPortrait3_ratio);
    width: var(--splStarsPortrait3_width);
}

.portrait .splScr.splStars4 {
    background-position: var(--splStarsPortrait4_position);
    background-size: var(--splStarsPortrait4_size);
    aspect-ratio: var(--splStarsPortrait4_ratio);
    width: var(--splStarsPortrait4_width);
}

.splScr.splStars2 {
    background-position: var(--splStars2_position);
    background-size: var(--splStars2_size);
    aspect-ratio: var(--splStars2_ratio);
    width: var(--splStars2_width);
}

.splScr.splScatter {
    background-position: var(--splScatter_position);
    background-size: var(--splScatter_size);
    aspect-ratio: var(--splScatter_ratio);
    width: var(--splScatter_width);
}

.splScr.splStars3 {
    background-position: var(--splStars3_position);
    background-size: var(--splStars3_size);
    aspect-ratio: var(--splStars3_ratio);
    width: var(--splStars3_width);
}

.splScr.splStars4 {
    background-position: var(--splStars4_position);
    background-size: var(--splStars4_size);
    aspect-ratio: var(--splStars4_ratio);
    width: var(--splStars4_width);
}

#splashScreen .splReels .splImageContainer,
#splashScreen .splReels .splImageContainer > *,
.scatterRespinsPage .splImageContainer,
.scatterRespinsPage .splImageContainer > * {
    aspect-ratio: var(--splReel1_ratio);
    width: var(--splReel1_width);
}

#splashScreen .splReels .splStarsContainer {
    margin-top: -13px;
}

#splashScreen .splReels .splStarsContainer,
#splashScreen .splReels .splStarsContainer > *,
.scatterRespinsPage .splStarsContainer,
.scatterRespinsPage .splStarsContainer > * {
    aspect-ratio: var(--splStars1_ratio);
    width: var(--splStars1_width);
}

.scatterRespinsPage .splImageContainer {
    --overflow-width: 53px;
    width: calc(427px + var(--overflow-width));
    margin-right: 20px;
}

.scatterRespinsPage .splStarsContainer {
    width: 128px;
}

.scatterRespinsPage .splImageContainer > * {
    width: 100%;
}

.scatterRespinsPage .splStarsContainer > * {
    width: 100%;
}

/* ************************* 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';
}

/* MOBILE PORTRAIT OVERRIDES */
.portrait #splashScreen {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portrait #splashScreen .paytablePage {
    bottom: unset;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 1;
}

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

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

.portrait #splashScreen .splReels .splStarsContainer,
.portrait #splashScreen .splReels .splStarsContainer > * {
    aspect-ratio: var(--splStarsPortrait1_ratio);
    width: var(--splStarsPortrait1_width);
}

.portrait .scatterRespinsPage .splStarsContainer {
    width: 100%;
    height: 149px;
    margin: 0 14px 0 0;
}

.portrait .scatterRespinsPage .splStarsContainer > * {
    width: 310px;
}

.portrait .scatterRespinsPage .splImageContainer {
    margin: 0 0 8px 0;
}

/* special resolutions fix */
/*
.portrait #splashScreen .splashContent {
    transform: scale(0.9);
}

.portrait.mobile-xs #splashScreen .splashContent {
    transform: scale(0.7);
}

.portrait.tablet #splashScreen .splashContent,
.portrait.tablet-xs #splashScreen .splashContent {
    transform: scale(0.5);
}

.portrait.safari:not(.mobile-xs):not(.tablet):not(.tablet-xs) #splashScreen .splashContent {
    transform: scale(0.9);
}*/

/* MOBILE PORTRAIT LANUGAGE OVERRIDES */
body[language='ka'].portrait #splashScreen #splashContinueButton,
body[language='ka-GE'].portrait #splashScreen #splashContinueButton,
body[language='ja'].portrait #splashScreen #splashContinueButton,
body[language='ja-JP'].portrait #splashScreen #splashContinueButton {
    font-size: 20px;
}
