body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
    width: 100%;
    height: 130%;
}

@keyframes fadeId {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#bootContainer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeId 0.5s;
    text-align: center;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: rgba(0, 0, 0, 0.67);
}

.align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#canvasContainer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#canvasContainer canvas {
    width: 100% !important;
    height: 100% !important;
}

#debugContainer {
    position: fixed;
    left: 2px;
    top: 2px;
    padding: 2px 5px;
    font-family: monospace;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

#debugContainer > * {
    display: inline-block;
}

#debugContainer > *::after {
    content: ' | ';
}

#debugContainer > *:last-child::after {
    content: '';
}

#debugContainer input {
    vertical-align: middle;
}

.spinner {
    text-align: center;
    margin: auto;
    display: block;
    animation: spinner 1s infinite linear;
}

@keyframes spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media screen and (orientation: portrait) {
    .logo-img-div-Tiger {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media screen and (orientation: landscape) {
    .logo-img-div-Tiger {
        padding-left: 30%;
        padding-right: 30%;
    }
}

#Cocos2dGameContainer {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
    width: 0;
    height: 0;
}

.page {
    position: absolute;
    left: 0;
    top: 0;

    overflow: auto;

    width: 100%;
    max-width: 1080px;
    height: 100%;
}

.page-container {
    position: relative;
    z-index: 10;

    display: flex;
    overflow: auto;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 2vw 25px 100px 25px;

    background-color: #19191d;
    color: white;

    font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
    text-align: center;

    animation: fadeId 0.5s;
}

.page-center-content {
    display: flex;
    justify-content: center;
    flex-direction: row;
    z-index: 1;
}

#game-history-page .page-container {
    height: 100%;
    padding: 0px 10px 0px 10px;
}

.page-box {
    width: 100%;
    text-align: justify;
}

.paytable-box {
    width: 100%;
    text-align: justify;
}

.paytable-description {
    flex-direction: column;
    background-image: image-set(
        '../img/information-page/paytable-wild-frame.avif' type('image/avif'),
        '../img/information-page/paytable-wild-frame.webp' type('image/webp'),
        '../img/information-page/paytable-wild-frame.png' type('image/png')
    );
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

.paytable-lbldescription {
    font-size: 0.8em;
    margin-top: -50px;
    margin-bottom: 20px;
}

.paytable-box.symbol {
    display: flex;
    justify-content: center;
    float: left;
    width: 80%;
}

.paytable-box.mutiplier {
    float: left;
    width: 10%;
    color: #fbbc04;
    font-size: 1.3em;
    padding-top: 0.5em;
}

.paytable-box.amount {
    float: left;
    width: 10%;
    font-size: 1.3em;
    padding-top: 0.5em;
}

@media screen and (max-width: 720px) {
    .paytable-box.mutiplier {
        font-size: 0.8em;
    }

    .paytable-box.amount {
        font-size: 0.8em;
    }
}

.paytable-container {
    background-image: image-set(
        '../img/information-page/paytable-frame.avif' type('image/avif'),
        '../img/information-page/paytable-frame.webp' type('image/webp'),
        '../img/information-page/paytable-frame.png' type('image/png')
    );
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    margin-bottom: 1em;
}

.paytable-container img {
    width: 77%;
}

.page-box.img {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.page-box.img img {
    width: inherit;
    /* max-width: 500px; */
}

.info-btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.history-btn-close {
    position: absolute;
    top: 10px;
    right: 5px;
}

.loading-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: black;
    animation: fadeId 0.5s;
    opacity: 0.9;
}

.page-loading-icon {
    position: absolute;
    top: 35%;
}

#landscape-bg {
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 100%;
    /* background-image: image-set('../img/landscape-bg.avif' type('image/avif'), '../img/landscape-bg.webp' type('image/webp'), '../img/landscape-bg.jpg' type('image/jpeg')); */
    background-image: url('../img/landscape-bg.jpg');
    animation: fadeId 0.5s;
}

/* end of custom style */
