html {
    -ms-touch-action: none;
}

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: #888;
    background-color: #333;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
    /* overflow cannot be applied in Cocos2dGameContainer, 
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
    overflow: hidden;
}

#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}

canvas {
    background-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited {
    color: #666;
}

a:active,
a:hover {
    color: #666;
}

p.header {
    font-size: small;
}

p.footer {
    font-size: x-small;
}

#splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212020 no-repeat center;
}

#splash-image {
    /* position: absolute; */
    display: block;
    width: 100%;
    height: 80%;
    background: url(./splash/splash.png) no-repeat center;
    max-width: 1000px;
    background-size: 30% auto;
    margin: 0 auto;
    /* background-size: 220px 220px; */
    /* background-size: 30%; */
    animation: animate-scale 0.7s, animate-opacity 0.7s, animate-blur 0.7s, animate-glow 1.2s ease-in-out;
}

@font-face {
    font-family: SVN-Franko;
    src: url(./fonts/SVN-Franko.ttf?t=123456) format('truetype');
}

.loading-text {
    font-family: SVN-Franko;
    src: url(./fonts/SVN-Franko.ttf?t=123456) format('truetype');
    /* bottom: 20%; */
    width: 100%;
    height: 10%;
    background-size: 30% auto;
    display: block;
    text-align: center;
    position: absolute;
    color: whitesmoke;
    font-size: 15px;
}

@keyframes animate-scale {
    0% {
        transform: scale(0.2);
    }
    25% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes animate-opacity {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

@keyframes animate-blur {
    0% {
        -webkit-filter: blur(5px);
        /* Safari 6.0 - 9.0 */
        filter: blur(5px);
        filter: drop-shadow(16px 16px 20px rgb(247, 148, 36))
    }
    100% {
        -webkit-filter: blur(0px);
        /* Safari 6.0 - 9.0 */
        filter: blur(0px);
        filter: drop-shadow(0px 0px 0px (247, 148, 36))
    }
}

@keyframes animate-glow {
    0% {
        filter: drop-shadow(16px 16px 20px rgb(247, 148, 36))
    }
    100% {
        filter: drop-shadow(5px 5px 5px (247, 148, 36))
    }
}

.button-low-network {
    background: url(./splash/bansd.png) no-repeat center;
    background-size: contain;
    max-width: 165px;
    max-height: 80px;
    width: 30%;
    height: 20%;
    bottom: 0%;
    right: 0%;
    position: absolute;
    border: none;
}

.button-high-network {
    background: url(./splash/banhd.png) no-repeat center;
    background-size: contain;
    max-width: 165px;
    max-height: 80px;
    width: 30%;
    height: 20%;
    bottom: 0%;
    right: 0%;
    position: absolute;
    border: none;
}

.div-low-network {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
}

.progress-bar {
    /* background: url(./splash/thanh_loading1.png)no-repeat center; */
    background-size: 60% 11px;
    /* position: absolute; */
    display: block;
    height: 10%;
    padding-left: 25%;
    width: 50%;
    /* bottom: 25%; */
}

.progress-bar span {
    /* margin-left: calc(50% - 180px); */
    /* margin-left: 20%; */
    display: block;
    transition: width 1.0s ease-in-out;
    background: url(./splash/loading_bar.png) left;
    background-size: 100% 100%;
    height: 11px;
}

/*
.stripes span {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                        transparent 75%, transparent);            
    
    animation: animate-stripes 1s linear infinite;             
} 

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0px;}
} */

html {
    -ms-touch-action: none;
}

body,
canvas,
div {
    display: block;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: default;
    color: #888;
    background-color: #333;
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    /* fix bug: https://github.com/cocos-creator/2d-tasks/issues/791 */
    /* overflow cannot be applied in Cocos2dGameContainer, 
  otherwise child elements will be hidden when Cocos2dGameContainer rotated 90 deg */
    overflow: hidden;
}

#Cocos2dGameContainer {
    position: absolute;
    margin: 0;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -webkit-box-pack: center;
}

canvas {
    background-color: rgba(0, 0, 0, 0);
}

a:link,
a:visited {
    color: #666;
}

a:active,
a:hover {
    color: #666;
}

p.header {
    font-size: small;
}

p.footer {
    font-size: x-small;
}

#splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212020 no-repeat center;
}

#splash-image {
    /* position: absolute; */
    display: block;
    width: 100%;
    height: 80%;
    background: url(./splash/splash.png) no-repeat center;
    max-width: 1000px;
    background-size: 30% auto;
    margin: 0 auto;
    /* background-size: 220px 220px; */
    /* background-size: 30%; */
    animation: animate-scale 0.7s, animate-opacity 0.7s, animate-blur 0.7s, animate-glow 1.2s ease-in-out;
}

@font-face {
    font-family: SVN-Franko;
    src: url(./fonts/SVN-Franko.ttf?t=123456) format('truetype');
}

.loading-text {
    font-family: SVN-Franko;
    src: url(./fonts/SVN-Franko.ttf?t=123456) format('truetype');
    /* bottom: 20%; */
    width: 100%;
    height: 10%;
    background-size: 30% auto;
    display: block;
    text-align: center;
    position: absolute;
    color: whitesmoke;
    font-size: 15px;
}

@keyframes animate-scale {
    0% {
        transform: scale(0.2);
    }
    25% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

@keyframes animate-opacity {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

@keyframes animate-blur {
    0% {
        -webkit-filter: blur(5px);
        /* Safari 6.0 - 9.0 */
        filter: blur(5px);
        filter: drop-shadow(16px 16px 20px rgb(247, 148, 36))
    }
    100% {
        -webkit-filter: blur(0px);
        /* Safari 6.0 - 9.0 */
        filter: blur(0px);
        filter: drop-shadow(0px 0px 0px (247, 148, 36))
    }
}

@keyframes animate-glow {
    0% {
        filter: drop-shadow(16px 16px 20px rgb(247, 148, 36))
    }
    100% {
        filter: drop-shadow(5px 5px 5px (247, 148, 36))
    }
}

.button-low-network {
    background: url(./splash/bansd.png) no-repeat center;
    background-size: contain;
    max-width: 165px;
    max-height: 80px;
    width: 30%;
    height: 20%;
    bottom: 0%;
    right: 0%;
    position: absolute;
    border: none;
}

.button-high-network {
    background: url(./splash/banhd.png) no-repeat center;
    background-size: contain;
    max-width: 165px;
    max-height: 80px;
    width: 30%;
    height: 20%;
    bottom: 0%;
    right: 0%;
    position: absolute;
    border: none;
}

.div-low-network {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
}

.progress-bar {
    /* background: url(./splash/thanh_loading1.png)no-repeat center; */
    background-size: 60% 11px;
    /* position: absolute; */
    display: block;
    height: 10%;
    padding-left: 25%;
    width: 50%;
    /* bottom: 25%; */
}

.progress-bar span {
    /* margin-left: calc(50% - 180px); */
    /* margin-left: 20%; */
    display: block;
    transition: width 1.0s ease-in-out;
    background: url(./splash/loading_bar.png) left;
    background-size: 100% 100%;
    height: 11px;
}

/*
.stripes span {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                        transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                        transparent 75%, transparent);            
    
    animation: animate-stripes 1s linear infinite;             
} 

@keyframes animate-stripes {
    0% {background-position: 0 0;} 100% {background-position: 60px 0px;}
} */
        body,
        html {
            height: 100% !important;
            font-size: 100%;
            -webkit-text-size-adjust: none;
            background-color: #000;
            margin: 0;
            -webkit-overflow-scrolling: auto;
            transform: rotate(0deg);
        }

        #ios-ath-container {
            display: none;
        }

        #android-ath-container {
            display: none;
        }

        .grecaptcha-badge {
            visibility: hidden;
        }

        .ios-text {
            line-height: 1.5;
            margin-top: 0px;
            padding: 0 12px;
        }

        .ath-action-icon {
            width: 1.2em;
            height: 1.5em;
            background-image: url("splash/addtohome.png");
            margin-top: -0.3em;
            background-size: auto 100%;
            background-repeat: no-repeat;
            text-indent: -9999em;
            display: inline-block;
        }

        @media only screen and (max-width: 499px) {
            #ios-ath-container {
                position: fixed;
                left: 0;
                right: 0;
                margin: auto;
                width: 85%;
                max-width: 310px;
                height: 70px;
                padding: 10px;
                background-color: #ffffff;
                border: 2px solid #00234C;
                -webkit-border-radius: 5px;
                z-index: 1;
                text-align: justify;
                animation: toptobottom 2s normal ease-out;
                bottom: 1px;
            }
            #ios-ath-container::after {
                position: absolute;
                content: '';
                height: 0px;
                width: 0px;
                left: 43%;
                bottom: -20px;
                border-left: 20px solid transparent;
                border-right: 20px solid transparent;
                border-top: 20px solid #FFFFFF;
                z-index: 9999;
            }
            #ios-ath-container .inner-ios-container {
                display: flex;
                flex-direction: row;
                width: 100%;
                justify-content: space-between;
            }
            #ios-ath-container .popup-close-icon {
                position: absolute;
                width: 0px;
                right: 20px;
                top: 0px;
                font-size: 24px;
                font-weight: bolder;
                color: black;
                text-shadow: 0px -1px 1px #00234C;
                cursor: pointer;
            }
            img.ios-ath-img {
                height: 70px;
            }
            @keyframes toptobottom {
                0% {
                    bottom: 90%;
                }
                100% {
                    top: 1px;
                }
            }
        }

        @media only screen and (min-width: 500px) {
            #ios-ath-container::after {
                position: absolute;
                content: '';
                height: 0px;
                width: 0px;
                left: 86%;
                bottom: 90px;
                border-left: 20px solid transparent;
                border-right: 20px solid transparent;
                border-top: 20px solid #FFFFFF;
                z-index: 9999;
                transform: rotate(180deg);
            }
            #ios-ath-container {
                position: fixed;
                left: 0;
                right: 0;
                margin: auto;
                width: 85%;
                max-width: 310px;
                height: 70px;
                padding: 10px;
                background-color: #ffffff;
                border: 2px solid #00234C;
                -webkit-border-radius: 5px;
                z-index: 1;
                text-align: justify;
                animation: bottomtotop 2s normal ease-out;
                top: 20px;
                margin-right: 90px;
                margin-bottom: 1px !important;
            }
            #ios-ath-container.ipad-device {
                margin-right: 115px;
            }
            #ios-ath-container .inner-ios-container {
                display: flex;
                flex-direction: row;
                width: 100%;
                justify-content: space-between;
            }
            #ios-ath-container .popup-close-icon {
                position: absolute;
                width: 0px;
                right: 20px;
                top: 0px;
                font-size: 24px;
                font-weight: bolder;
                color: black;
                text-shadow: 0px -1px 1px #00234C;
                cursor: pointer;
            }
            img.ios-ath-img {
                height: 70px;
            }
            @keyframes bottomtotop {
                0% {
                    top: 90%;
                }
                100% {
                    top: 20px;
                }
            }
        }

        #android-ath-container::after {
            position: absolute;
            content: '';
            height: 0px;
            width: 0px;
            left: 86%;
            bottom: 90px;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #FFFFFF;
            z-index: 9999;
            transform: rotate(180deg);
        }

        #android-ath-container {
            margin-bottom: 1px !important;
        }

        #android-ath-container {
            position: fixed;
            right: 3px;
            margin: auto;
            width: 85%;
            max-width: 310px;
            height: 70px;
            padding: 10px;
            background-color: #ffffff;
            border: 2px solid #00234C;
            -webkit-border-radius: 5px;
            z-index: 1;
            text-align: justify;
            animation: bottomtotop-android 2s normal ease-out;
            top: 20px;
        }

        #android-ath-container .inner-android-container {
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
        }

        #android-ath-container .popup-close-icon {
            position: absolute;
            width: 0px;
            right: 20px;
            top: 0px;
            font-size: 24px;
            font-weight: bolder;
            color: black;
            text-shadow: 0px -1px 1px #00234C;
            cursor: pointer;
        }

        .android-text {
            line-height: 1.5;
            margin-top: 0px;
            padding: 0 15px;
        }

        img.android-ath-img {
            height: 70px;
        }

        .android-ath-action-icon {
            width: 1.2em;
            height: 1.5em;
            background-image: url("splash/3dots.jpg");
            margin-top: -0.3em;
            background-size: auto 100%;
            background-repeat: no-repeat;
            text-indent: -9999em;
            display: inline-block;
        }

        @keyframes bottomtotop-android {
            0% {
                top: 90%;
            }
            100% {
                top: 20px;
            }
        }

        #top {
            position: fixed;
            bottom: 70px;
            right: 30px;
            z-index: 99;
            font-size: 18px;
            border: none;
            outline: none;
            background-color: red;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 4px;
            transform: rotate(90deg);
        }

        #bottom {
            position: fixed;
            bottom: 20px;
            right: -10px;
            z-index: 99;
            font-size: 18px;
            border: none;
            outline: none;
            background-color: red;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 4px;
            transform: rotate(90deg);
        }

        /* Huơng dẫn scroll trong IOS */

        .instruction {
            display: none;
            position: absolute;
            z-index: 9999;
            height: 120vh;
            width: 100%;
            padding-top: 10vh;
            background: rgba(0, 0, 0, 0.5);
        }

        .instruction-content {
            margin: auto;
            max-width: 500px;
            position: relative;
            padding: 10px;
        }

        .close {
            color: #aaaaaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 20px;
            width: 40px;
            height: 40px;
            top: 10px;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        .img-sroll {
            max-width: 100%;
        }

        body,
        html {
            height: 100% !important;
            font-size: 100%;
            -webkit-text-size-adjust: none;
            background-color: #000;
            margin: 0;
            -webkit-overflow-scrolling: auto;
        }

        .img-sroll {
            max-width: 100%;
            pointer-events: none;
        }
		.loading-text {
			font-family: SVN-Franko;
			src: url(./fonts/SVN-Franko.ttf?t=123456) format('truetype');
			/* bottom: 20%; */
			width: 100%;
			height: 10%;
			background-size: 30% auto;
			display: block;
			text-align: center;
			position: absolute;
			color: whitesmoke;
			font-size: 15px;
		}
        /* Huơng dẫn scroll trong IOS */