HTML {
    width: 100%;
    height: 100%;
    position: fixed;
}

BODY {
    width: 100%;
    height: 100%;
    background-color: #000;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}
@font-face {
    font-family: 'nunito';
    src: url('./LeanderFontManager.php?font=nunitoMedium.ttf&gameId={GAME_ID}');
    src: local('☺'),
    url('./LeanderFontManager.php?font=nunitoMedium.eot&gameId={GAME_ID}') format('embedded-opentype'),
    url('./LeanderFontManager.php?font=nunitoMedium.woff2&gameId={GAME_ID}') format('woff2'),
    url('./LeanderFontManager.php?font=nunitoMedium.woff&gameId={GAME_ID}') format('woff'),
    url('./LeanderFontManager.php?font=nunitoMedium.ttf&gameId={GAME_ID}') format('truetype'),
    url('./LeanderFontManager.php?font=nunitoMedium.svg#din&gameId={GAME_ID}') format('svg');
    font-weight: normal;
    font-style: normal;
}
.loading-text{
    background-color: white;
    font-size: 18px;
}

.centeredX{
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.centeredY{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    vertical-align: top;
}
.centeredXY{
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    vertical-align: top;
}

#leanderPreloadGlass {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(0,0,0,1);
    pointer-events: none;
    z-index: 9999;
}
.containerLogo{
    width: 100%;
    height: 100%;
    justify-content: center;
}

#leanderPreload {
    margin: auto;
    display: block;
}

.preloadSpinnerContainer {
    width: 65%;
    height: 65%;
    position: relative;
    margin: 5% auto;
    overflow: hidden;
}

.preloadSpinner {
    position: absolute;
    margin: 0;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border: 4px solid transparent;
    border-bottom-color: #40d7c6;
    border-radius: 50%;
    -webkit-animation: preloadSpinAnim 10s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
    animation: preloadSpinAnim 10s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
    box-sizing: border-box;
}

.preloadSpinnerPaused:hover{
    animation-play-state: paused;
}

.preloadPercentage {
    position: absolute;
    width: 100%;
    height: 100%;
}

.preloadPercentageValue{
    position: relative;
    width: 30%;
    font-family: 'nunito', Arial, Verdana, Helvetica !important;
    font-size: 1.2em;
    color: #4e4f51;
    text-align: center;
    text-transform: none;
}

.preloadMessage{
    position: relative;
    width: 100%;
    margin-top: 1em;
}

.preloadMessageText{
    position: relative;
    font-family: 'nunito', Arial, Verdana, Helvetica !important;
    font-size: 1em;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

#logoPreload{
    width: 100%;
    margin-top: -3em;
    height: 3.5em;
    background-image: url('./images/vibragaming_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.preloadSpinnerColor1{
    border-bottom-color: #f813ed !important;
}

.preloadSpinnerColor2{
    border-bottom-color: white !important;
}

.preloadSpinnerColor3{
    border-bottom-color: #f813ed !important;
}

.preloadSpinnerColor4{
    border-bottom-color: white !important;
}

.preloadSpinnerColor5{
    border-bottom-color: #f813ed !important;
}

.preloadSpinnerColor6{
    border-bottom-color: white !important;
}

.preloadSpinnerColor7{
    border-bottom-color: #f813ed !important;
}

.preloadSpinnerColor8{
    border-bottom-color: white !important;
}

.preloadSpinnerColor9{
    border-bottom-color: #f813ed !important;
}

.preloadSpinnerColor10{
    border-bottom-color: white !important;
}

.preloadSpinnerColor11{
    border-bottom-color: #f813ed !important;
}

-webkit-@keyframes preloadSpinAnim {
            -webkit-from {
                -webkit-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            -webkit-to {
                -webkit-transform: rotate(360deg);
                -ms-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }

@-webkit-keyframes preloadSpinAnim {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes preloadSpinAnim {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes LeanderPreloadFadeIn {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes LeanderPreloadFadeOut {
    0%   {opacity: 1; display: block;}
    100% {opacity: 0; display: none;}
}

@keyframes LeanderPreloadFadeIn {
    0%   {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes LeanderPreloadFadeOut {
    0%   {opacity: 1; display: block;}
    100% {opacity: 0; display: none;}
}

.leanderPreloadManager .fade-in {
    -webkit-animation: LeanderPreloadFadeIn 1s linear;
    -moz-animation: LeanderPreloadFadeIn 1s linear;
    -ms-animation: LeanderPreloadFadeIn 1s linear;
    -o-animation: LeanderPreloadFadeIn 1s linear;
    animation: LeanderPreloadFadeIn 1s linear;
}
.leanderPreloadManager .fade-out {
    -webkit-animation: LeanderPreloadFadeOut 1s linear;
    -moz-animation: LeanderPreloadFadeOut 1s linear;
    -ms-animation: LeanderPreloadFadeOut 1s linear;
    -o-animation: LeanderPreloadFadeOut 1s linear;
    animation: LeanderPreloadFadeOut 1s linear;
}

.leanderPreloadManager {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: none;
    z-index: 9998;
}
.leanderPreloadManager .displayNone {
    display: none;
}
.leanderPreloadManager .text {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-family: 'liberGrotesqueBold', Arial, Verdana, Helvetica !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}
.leanderPreloadManager .signposting {
    position: absolute;
    width: 100%;
    bottom: 0;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-size: 1.5em;
    text-align: center;
    text-transform: none;
    font-weight: normal;
    cursor: default;
}

#LeanderPreloadSignPostingMessage {
    z-index: 9999;
}

/* Only for none agcc */
.leanderPreloadManager .spNoneAGCC {
    width: 80% !important;
    font-size: 2.5em !important;
}

.leanderPreloadManagerExternal {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 9998;
}

/* MOBILE RESPONSIVE FONT SETTINGS */

/* Screen width 800px */
@media screen and (min-width: 800px) and (min-height: 700px) {
    #leanderPreload 			{ width: 200px; height: 200px; }
    .leanderPreloadManager 		{ font-size: 12px; }
    .preloadSpinner 			{ border: 4px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 600px) and (max-height: 699px) {
    #leanderPreload 			{ width: 200px; height: 200px; }
    .leanderPreloadManager 		{ font-size: 11px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 500px) and (max-height: 599px) {
    #leanderPreload 			{ width: 180px; height: 180px; }
    .leanderPreloadManager 		{ font-size: 10px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 400px) and (max-height: 499px) {
    #leanderPreload 			{ width: 150px; height: 150px; }
    .leanderPreloadManager 		{ font-size: 9px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 300px) and (max-height: 399px) {
    #leanderPreload 			{ width: 135px; height: 135px; }
    .leanderPreloadManager 		{ font-size: 8px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 200px) and (max-height: 299px) {
    #leanderPreload 			{ width: 125px; height: 125px; }
    .leanderPreloadManager 		{ font-size: 7px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 800px) and (min-height: 100px) and (max-height: 199px) {
    #leanderPreload 			{ width: 90px; height: 90px; }
    .leanderPreloadManager 		{ font-size: 6px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}
@media screen and (min-width: 800px) and (max-height: 99px) {
    #leanderPreload 			{ width: 75px; height: 75px; }
    .leanderPreloadManager 		{ font-size: 4px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}

/* Screen width 640px - 799px */
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 600px) {
    #leanderPreload 			{ width: 200px; height: 200px; }
    .leanderPreloadManager 		{ font-size: 12px; }
    .preloadSpinner 			{ border: 4px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 500px) and (max-height: 599px) {
    #leanderPreload 			{ width: 180px; height: 180px; }
    .leanderPreloadManager 		{ font-size: 10px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 400px) and (max-height: 499px) {
    #leanderPreload 			{ width: 150px; height: 150px; }
    .leanderPreloadManager 		{ font-size: 9px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 300px) and (max-height: 399px) {
    #leanderPreload 			{ width: 135px; height: 135px; }
    .leanderPreloadManager 		{ font-size: 8px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 200px) and (max-height: 299px) {
    #leanderPreload 			{ width: 125px; height: 125px; }
    .leanderPreloadManager 		{ font-size: 7px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (min-height: 100px) and (max-height: 199px) {
    #leanderPreload 			{ width: 90px; height: 90px; }
    .leanderPreloadManager 		{ font-size: 6px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}
@media screen and (min-width: 640px) and (max-width: 799px) and (max-height: 99px) {
    #leanderPreload 			{ width: 75px; height: 75px; }
    .leanderPreloadManager 		{ font-size: 4px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}

/* Screen width 240px - 639px */
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 700px) {
    #leanderPreload 			{ width: 200px; height: 200px; }
    .leanderPreloadManager 		{ font-size: 10px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 600px) and (max-height: 699px) {
    #leanderPreload 			{ width: 200px; height: 200px; }
    .leanderPreloadManager 		{ font-size: 10px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 500px) and (max-height: 599px) {
    #leanderPreload 			{ width: 180px; height: 180px; }
    .leanderPreloadManager 		{ font-size: 9px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 400px) and (max-height: 499px) {
    #leanderPreload 			{ width: 150px; height: 150px; }
    .leanderPreloadManager 		{ font-size: 8px; }
    .preloadSpinner 			{ border: 3px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 300px) and (max-height: 399px) {
    #leanderPreload 			{ width: 135px; height: 135px; }
    .leanderPreloadManager 		{ font-size: 8px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 200px) and (max-height: 299px) {
    #leanderPreload 			{ width: 125px; height: 125px; }
    .leanderPreloadManager 		{ font-size: 7px; }
    .preloadSpinner 			{ border: 2px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (min-height: 100px) and (max-height: 199px) {
    #leanderPreload 			{ width: 90px; height: 90px; }
    .leanderPreloadManager 		{ font-size: 5px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}
@media screen and (min-width: 240px) and (max-width: 639px) and (max-height: 99px) {
    #leanderPreload 			{ width: 75px; height: 75px; }
    .leanderPreloadManager 		{ font-size: 4px; }
    .preloadSpinner 			{ border: 1px solid transparent; }
}


#preloadContainer{
    position: relative;
    top: 33%;
    display: block;
}

#box{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 500%;
    height: 500%;
    margin: 0;
    padding: 0;
}

#percentage {
    margin-top: 20px;
    visibility: hidden;
    pointer-events: none;
    color: white;
    font-size: 11px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

#leanderPreloadProgressBar {
    width: 65%;
    top: 53%;
    left: 50%;

    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);

    background: -webkit-linear-gradient(#393939, #787878, #363636 50%);
    background:    -moz-linear-gradient(#393939, #787878, #363636 50%);
    background:      -o-linear-gradient(#393939, #787878, #363636 50%);
    background:         linear-gradient(#393939, #787878, #363636 50%);

    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
}
#leanderPreloadMaskBackground {
    background-color: black;

    background: -webkit-linear-gradient(#393939, #fff, #363636 50%);
    background:    -moz-linear-gradient(#393939, #fff, #363636 50%);
    background:      -o-linear-gradient(#393939, #fff, #363636 50%);
    background:         linear-gradient(#393939, #fff, #363636 50%);
}
#leanderPreloadBar {
    background: -webkit-linear-gradient(to right, #ee1564, #731110 60%);
    background:    -moz-linear-gradient(to right, #ee1564, #731110 60%);
    background:      -o-linear-gradient(to right, #ee1564, #731110 60%);
    background:         linear-gradient(to right, #ee1564, #731110 60%);

    opacity: 0.85;
}
#leanderPreloadMaskBackground,
#leanderPreloadBar {
    width: 90%;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
}
#leanderPreloadProgressBar,
#leanderPreloadMaskBackground,
#leanderPreloadBar {
    position: absolute;
    /*height: 7px;*/
}

.hideObject {
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-name: hideObject;
    animation-timing-function: step-end;
    animation-fill-mode: forwards;
}

.hideObjectDelayed {
    animation-delay: 0.2s;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-name: hideObject;
    animation-timing-function: step-end;
    animation-fill-mode: forwards;
}

@keyframes hideObject {
    0% { opacity: 1.0; -moz-opacity: 1.0; -khtml-opacity: 1.0; filter: alpha(opacity=100); }
    10% { opacity: 0.9; -moz-opacity: 0.9; -khtml-opacity: 0.9; filter: alpha(opacity=90); }
    20% { opacity: 0.8; -moz-opacity: 0.8; -khtml-opacity: 0.8; filter: alpha(opacity=80); }
    30% { opacity: 0.7; -moz-opacity: 0.7; -khtml-opacity: 0.7; filter: alpha(opacity=70); }
    40% { opacity: 0.6; -moz-opacity: 0.6; -khtml-opacity: 0.6; filter: alpha(opacity=60); }
    50% { opacity: 0.5; -moz-opacity: 0.5; -khtml-opacity: 0.5; filter: alpha(opacity=50); }
    60% { opacity: 0.4; -moz-opacity: 0.4; -khtml-opacity: 0.4; filter: alpha(opacity=40); }
    70% { opacity: 0.3; -moz-opacity: 0.3; -khtml-opacity: 0.3; filter: alpha(opacity=30); }
    80% { opacity: 0.2; -moz-opacity: 0.2; -khtml-opacity: 0.2; filter: alpha(opacity=20); }
    90% { opacity: 0.1; -moz-opacity: 0.1; -khtml-opacity: 0.1; filter: alpha(opacity=10); }
    100% { opacity: 0.0; -moz-opacity: 0.0; -khtml-opacity: 0.0; filter: alpha(opacity=0); display: none; }
}
