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

.portrait #splashScreen {
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_portraitAmbientBackground_splash.jpg?_t=20250630212200);
}

#splashScreen .screenOverlay {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    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;
}

#splashScreen .paytablePage {
    position: unset;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 96px;
}

#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: 0.67px;
    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: 0.67px;
    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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: calc(100% - 140px);
    overflow: hidden;
}

#splashScreen .gameLogo {
    margin: -80px auto -40px;
}

#splashScreen .symbolImage .flare,
#splashScreen .symbolImage .symbol_11_glow {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 240px !important;
    height: 240px !important;
    margin: auto;
    transform: scale(2);
    z-index: -1;
}

#splashScreen .symbolImage .symbol_11_glow {
    width: 132px !important;
    height: 132px !important;
}

#splashScreen .symbol.mystery .symbolDescription {
    position: absolute;
    top: -20px;
}

#splashScreen .symbolWrapper {
    margin: 0;
}

#splashScreen .symbolWrapper .symbol.splScrGlow .reels_glow {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: scale(2);
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_1_drawn,
#splashScreen .paytablePage._active .reelsContainer .splash_reel_2_drawn,
#splashScreen .paytablePage._active .reelsContainer .splash_reel_3_drawn,
#splashScreen .paytablePage._active .reelsContainer .splash_reel_4_drawn,
#splashScreen .paytablePage._active .reelsContainer .splash_reel_5_drawn {
    animation: none 6s forwards infinite;
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_1_drawn {
    animation-name: expandedSymbolToggle_1;
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_2_drawn {
    animation-name: expandedSymbolToggle_2;
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_3_drawn {
    animation-name: expandedSymbolToggle_3;
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_4_drawn {
    animation-name: expandedSymbolToggle_4;
}

#splashScreen .paytablePage._active .reelsContainer .splash_reel_5_drawn {
    animation-name: expandedSymbolToggle_5;
}

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

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

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

.coinValues {
    background-position: -443px -503px;
    width: 228px;
    height: 115px;
}

.flare_blue {
    background-position: -781px -1px;
    width: 240px;
    height: 240px;
}

.flare_yellow {
    background-position: -781px -243px;
    width: 240px;
    height: 240px;
}

.gameLogo {
    background-position: -1px -1px;
    width: 778px;
    height: 279px;
}

.reels_glow {
    background-position: -443px -345px;
    width: 248px;
    height: 156px;
}

.splash_reel_1_drawn {
    background-position: -1px -282px;
    width: 440px;
    height: 255px;
}

.splash_reel_2_drawn {
    background-position: -1px -539px;
    width: 440px;
    height: 255px;
}

.splash_reel_3_drawn {
    background-position: -577px -727px;
    width: 440px;
    height: 255px;
}

.splash_reel_4_drawn {
    background-position: -1px -796px;
    width: 440px;
    height: 255px;
}

.splash_reel_5_drawn {
    background-position: -443px -984px;
    width: 440px;
    height: 255px;
}

.splash_symbol_11 {
    background-position: -693px -485px;
    width: 240px;
    height: 240px;
}

.symbol_11_glow {
    background-position: -443px -620px;
    width: 132px;
    height: 132px;
}

.synotLogo {
    background-position: -443px -282px;
    width: 304px;
    height: 61px;
}

.threePlus {
    background-position: -443px -754px;
    width: 128px;
    height: 108px;
}

/* ************************* 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 .splashContent {
    margin: 0 0 200px;
    overflow: visible;
}

.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 .gameLogo {
    margin: 20px 0 -80px -28px;
}

.portrait #splashScreen .symbolWrapper {
    order: 1;
    width: var(--reelsWidth);
    margin-bottom: 60px;
}

.portrait #splashScreen .symbol.mystery {
    order: 2;
    position: relative;
    width: 50%;
    margin: 0 40% 0 0;
}

.portrait #splashScreen .symbol.coin {
    order: 3;
    width: 50%;
    margin: -240px 0 0 40%;
}

.portrait #splashScreen .paytablePage.intro .symbol.mystery .symbolDescription {
    margin: 0;
}

/* special resolutions fix */
.portrait.tablet #splashScreen .gameLogo {
    margin: 0 0 -200px -28px;
    transform: scale(0.7);
}

.portrait.tablet #splashScreen .paytablePage.intro {
    margin: 0 0 -80px;
    transform: scale(0.7);
}

.portrait.mobile-xs #splashScreen .paytablePage.intro {
    margin-bottom: -20px;
}

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