/* SPLASHSCREEN */

#splashScreen {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-image: url(../Game/Graphics/Images/Backgrounds/GFX_ambientBackground_splashScreen.jpg?_t=20260520122138);
    background-size: cover;
    background-position: center;
    z-index: 9999999;
    opacity: 1;
    transition: opacity 1s;
    transform: translate3d(-1px, -1px, 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;
}

#splashScreen .paytablePage {
    top: unset;
    bottom: 164px;
    width: 100%;
    height: 380px;
    box-sizing: border-box;
    padding: 0 40px;
}

/*#splashScreen .paytablePage .customContent {*/
/*    height: 100% !important;*/
/*}*/

#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;
    white-space: nowrap;
}

#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 .gameLogoBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    mix-blend-mode: screen;
    display: none;
}

.portrait #splashScreen .gameLogoBg {
    left: 50%;
    transform: scale(1.55) translateX(-50%);
    transform-origin: left;
    top: 20px;
}

@supports (mix-blend-mode: screen) {
    #splashScreen .gameLogoBg {
        display: block;
    }
}

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

.splashScreen .buyFeatureRibbon div {
    position: absolute;
    top: 39px;
    left: 107px;
    width: 204px;
    height: 56px;
    font-size: 28px;
    line-height: 28px;
    font-weight: bold;
    color: #ffffc4;
    text-align: center;
}

.splashScreen .buyFeatureRibbon div.text {
    background: repeating-linear-gradient(#ffffc4, #ffc561 28px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.splashScreen .buyFeatureRibbon div.shadow {
    text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
}

.paytablePage.splashScreen {
    display: flex;
    align-items: center;
}

.paytablePage.splashScreen .customContent {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: auto !important;
    justify-content: space-around;
}

.paytablePage.splashScreen .customContent > * {
    display: flex;
    flex-direction: column;
    margin: 0 -33px;
}

.splashScreen .symbolDescription {
    font-size: 53px;
}

.splashScreen .splBonus {
    margin-top: calc(-28px - 16px);
    margin-bottom: calc(-71px + 16px);
}

.splashScreen .splCollector {
    margin-top: -39px;
    margin-bottom: -60px;
}

.splashScreen .screenContainer .splImage {
    margin-bottom: calc(413px - 364px - 99px);
    width: 549px;
    height: 364px;
}

.splashScreen .screenContainer .splImage > * {
    position: absolute;

    animation-name: fadeSplashScreenImage;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 10s;
}

.splashScreen .screenContainer .splImage .splReels5 {
    animation-delay: -2s;
}

.splashScreen .screenContainer .splImage .splReels4 {
    animation-delay: -4s;
}

.splashScreen .screenContainer .splImage .splReels3 {
    animation-delay: -6s;
}

.splashScreen .screenContainer .splImage .splReels2 {
    animation-delay: -8s;
}

@keyframes fadeSplashScreenImage {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    89% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.splashScreen .scatterCount {
    display: inline;
}

.splashScreen .symbolDescriptionContainer {
    position: relative;
}

.splashScreen .screenContainer .symbolDescriptionContainer {
    letter-spacing: 2px;
}

.splashScreen .symbolDescription.stroke {
    -webkit-text-stroke: 5px #000;
    position: absolute;
    width: 100%;
    font-weight: bold;
}

.splashScreen .symbolDescription.text {
    background: repeating-linear-gradient(#fff -8px, #ffe797, #fc9b01 60px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    font-weight: bold;
    position: relative;
}

.portrait .paytablePage.splashScreen .customContent {
    flex-direction: column;
    align-items: center;
}

.portrait .paytablePage.splashScreen {
    align-items: center;
}
.portrait #splashScreen .paytablePage {
    flex-direction: column;
    height: calc(100% - 340px);
    justify-content: space-evenly;
    padding: 0;
}

.portrait .paytablePage.splashScreen > * {
    display: flex;
    align-items: center;
    flex: 0;
}

.portrait .paytablePage.splashScreen .customContent > * {
    flex-direction: row;
    align-items: center;
    height: 290px;
    width: 100%;
}

.portrait .splashScreen .screenContainer .splImage {
    transform: scale(0.85) translateX(-70px);
}

.portrait .paytablePage.splashScreen .customContent > * > *:first-child {
    width: 440px;
    margin: 0;
}

.portrait .splashScreen .symbolDescription {
    font-size: 56px;
    background: repeating-linear-gradient(#fff 0px, #ffe797, #fc9b01 69px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.portrait .splashScreen .symbolDescriptionContainer {
    width: 320px;
}

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

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

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

.buyFeatureRibbon {
    background-position: -1px -733px;
    width: 327px;
    height: 120px;
}

.gameLogo {
    background-position: -552px -1px;
    width: 1280px;
    height: 239px;
}

.splReels1 {
    background-position: -1px -1px;
    width: 549px;
    height: 364px;
}

.splReels2 {
    background-position: -1px -367px;
    width: 549px;
    height: 364px;
}

.splReels3 {
    background-position: -552px -242px;
    width: 549px;
    height: 364px;
}

.splReels4 {
    background-position: -552px -608px;
    width: 549px;
    height: 364px;
}

.splReels5 {
    background-position: -1103px -242px;
    width: 549px;
    height: 364px;
}

.synotLogo {
    background-position: -1px -855px;
    width: 304px;
    height: 61px;
}

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

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

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

.gameLogoBg {
    background-position: -1px -1px;
    width: 1280px;
    height: 489px;
}

.splBonus {
    background-position: -420px -492px;
    width: 416px;
    height: 413px;
}

.splCollector {
    background-position: -1px -492px;
    width: 417px;
    height: 413px;
}

/* MOBILE PORTRAIT OVERRIDES */
.portrait #splashScreen {
    /*display: flex;*/
    overflow: hidden;
}

.portrait #splashScreen .gameLogo,
.portrait #splashScreen .containerTitle {
    transform: scale(0.75);
}

.portrait #splashScreen .gameLogo {
    top: 24px;
    left: 50%;
    transform: scale(0.65) translateX(-50%);
    transform-origin: left;
    z-index: 1;
}

.portrait #splashScreen .buyFeatureRibbon {
    top: -20px;
    transform: scale(0.8);
    transform-origin: left;
}

.portrait .splashScreen .megawaysLogo {
    top: -18px;
    right: -20px;
    transform: scale(0.8);
    transform-origin: right;
}

/*.portrait #splashScreen .paytablePage {*/
/*    position: unset;*/
/*    height: auto;*/
/*    max-height: calc(100% - 272px - (164px - 40px));*/
/*    padding: 0;*/
/*    margin: calc(164px + 40px) 0 0;*/
/*    z-index: 1;*/
/*}*/

/*.portrait #splashScreen .wrapper {*/
/*    flex-direction: column;*/
/*}*/

/*.portrait #splashScreen .symbol {*/
/*    flex-direction: row;*/
/*    width: 100%;*/
/*    height: 256px;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.portrait #splashScreen .symbol.bonus {*/
/*    margin: 40px 0;*/
/*}*/

/*.portrait #splashScreen .symbol.bonus .symbolBackground {*/
/*    width: 60%;*/
/*}*/

/*.portrait #splashScreen .imageWrapper {*/
/*    margin-right: 20px;*/
/*}*/

/*.portrait #splashScreen .symbolImage {*/
/*    width: 256px;*/
/*    height: 256px;*/
/*    margin-right: 20px;*/
/*}*/

/*.portrait #splashScreen .symbol.bonus .symbolImage {*/
/*    margin-right: 0;*/
/*}*/

/*.portrait #splashScreen .symbol.bonus .screenImage {*/
/*    display: none;*/
/*}*/

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

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

/* special resolutions fix */
.portrait #splashScreen .paytablePage {
    transform: scale(0.9);
    bottom: -70px;
}

.portrait.extendPortrait.mobile-xs #splashScreen .paytablePage {
    transform: scale(0.75);
}

.portrait.mobile-xs #splashScreen .paytablePage {
    transform: scale(0.75);
    bottom: 0;
}

.portrait.tablet #splashScreen .paytablePage,
.portrait.tablet-xs #splashScreen .paytablePage {
    transform: scale(0.55);
    bottom: 0;
}

.portrait.tablet-xs #splashScreen .paytablePage {
    transform: scale(0.45);
}

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

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

body[language^='ja'] .splashScreen .screenContainer .symbolDescription.text,
body[language^='zh'] .splashScreen .screenContainer .symbolDescription.text {
    background: repeating-linear-gradient(#fff -8px, #ffe797, #fc9b01 72px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

body[language^='tr'].portrait .splashScreen .symbolDescription {
    font-size: 40px;
    background: repeating-linear-gradient(#fff 0px, #ffe797, #fc9b01 46px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[language^='ka'] .splashScreen .symbolDescription {
    font-size: 48px;
    background: repeating-linear-gradient(#fff 7px, #ffe797, #fc9b01 62px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[language^='ka'] .splashScreen .screenContainer .symbolDescription {
    font-size: 48px;
    background: repeating-linear-gradient(#fff 0px, #ffe797, #fc9b01 57px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 53px;
}

body[language^='ka'].portrait .splashScreen .symbolDescription {
    font-size: 38px;
    background: repeating-linear-gradient(#fff 0px, #ffe797, #fc9b01 48px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body[language^='ka'].portrait .splashScreen .screenContainer .symbolDescription {
    font-size: 35px;
    background: repeating-linear-gradient(#fff 7px, #ffe797 43px, #fc9b01 53px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 48px;
}

body[language^='ja'].portrait .splashScreen .screenContainer .symbolDescription {
    font-size: 66px;
    background: repeating-linear-gradient(#fff 7px, #ffe797, #fc9b01 100px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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