:root{
    --theme-color:#000;
    --theme-color-secondary:#999;
    --theme-color-primary:#4582FF;
    --theme-background:#fff;
    --theme-background-secondary:#fff;
    --theme-content-background:#fff;
    --border-radius: 8px;
    --border-radius-sm: 12px;
    --border-radius-lg: 15px;
    --font-size-sm: 12px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --play-btn-bg: #fff;
    --play-btn-color: #fff;
    --play-btn-padding-top-bottom: 4px;
    --play-btn-padding-left-right: 24px;
}
body{
    background-color: var(--theme-background);
    font-family: Helvetica;
}

.play-btn {
    display: inline-block;
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 17px;
    color: var(--play-btn-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--play-btn-bg);
    padding: var(--play-btn-padding-top-bottom) var(--play-btn-padding-left-right);
}
.play-btn.is-primary {
    background-color: var(--theme-color-primary);
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-center {
    text-align: center;
}
* {
    -webkit-tap-highlight-color: transparent;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%
}

.globalMain {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh
}

.globalMain:after {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    content: ""
}

.divUrl {
    display: none;
    overflow: hidden;
    z-index: 4;
    width: 100vw;
    height: 0;
    font-weight: 800;
    font-size: 20px;
    color: #747474;
    transition: height .5s
}

.mainStyle {
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 125px)
}

.clickEnlarge:active {
    -webkit-tap-highlight-color: transparent;
    animation: clickEnlarge 0.2s linear;
}

@keyframes clickEnlarge {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%);
    }

    100% {
        transform: scale(1.4);
        box-shadow: 0 3px 18px 0 rgb(0 0 0 / 16%);
    }
}
.display-center-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    font-size: 16px;
    overflow: hidden;
}

 :root{
     --terms-margin-top-height: 120px;
     --terms-mainStyle-a-color:#378ef5;
     --terms-mainStyle-h1-color:#378ef5;
     --terms-mainStyle-h2-color:#747474;
     --terms-mainStyle-li-color:#8090aa;
 }
.darkTheme{
    --terms-margin-top-height: 50px;
    --terms-mainStyle-a-color: var(--theme-color-link);
    --terms-mainStyle-h1-color:#FFFFFF;
    --terms-mainStyle-h2-color:#FFFFFF;
    --terms-mainStyle-li-color:#74777F;
}
.lightTheme{
    --terms-margin-top-height: 50px;
    --terms-mainStyle-a-color: var(--theme-color-link);
    --terms-mainStyle-h1-color:#333;
    --terms-mainStyle-h2-color:#333;
    --terms-mainStyle-li-color:#999;
}
.terms {
    width: 100%;
    height: 100%;
    word-break: break-word
}

.mainStyle a {
    text-decoration: underline;
    color: var(--terms-mainStyle-a-color);
}

.mainStyle h1 {
    color: var(--terms-mainStyle-h1-color);
}

.mainStyle h2,
.mainStyle h3 {
    color: var(--terms-mainStyle-h2-color);
}

.mainStyle li,
.mainStyle p {
    color: var(--terms-mainStyle-li-color);
}

.self_navigation_style {
    position: fixed
}
.content{
    margin-top: var(--terms-margin-top-height);
    max-width: 100%;
    color: #1D2C1B;
}

.whiteBackground {
    display: flex;
    position: fixed;
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--terms-margin-top-height);
}

@media screen and (min-width:375px) and (max-width:380px) {
    .whiteBackground {
        position: fixed;
        left: calc(50% - 190px);
        z-index: 1;
        width: 100%;
        height:  var(--terms-margin-top-height);
    }
}

.navLayout {
    position: fixed;
    width: 100%;
}
.mainStyle{
    background-color: var(--theme-content-background);
}
.darkTheme .content, .lightTheme .content{
    width: 95%;
    margin-top: 0;
}
.darkTheme .terms, .lightTheme .terms{
    height: var(--terms-margin-top-height);
    background-color: var(--theme-background);
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 20px;
}

@media screen and (min-width:879px) {
    .navigationStyle[css-nav] {
        display: grid;
        justify-content: center;
        align-items: center;
        height: 100%;
        --gridTemplateColumns: 8;
        grid-template-areas: "in0 in1 in1 in1 in1 in1 in1 in1";
        grid-template-rows: repeat(1, 110px);
        --cellSpacing: 16px;
        grid-gap: var(--cellSpacing);
        grid-template-columns: repeat(var(--gridTemplateColumns), 85px)
    }

    .div0[css-nav] {
        grid-area: in0/in0/in0/in0
    }

    .div1[css-nav] {
        margin-left: -15px;
        grid-area: in1/in1/in1/in1
    }
}

@media screen and (min-width:325px) and (max-width:878px) {
    .navigationStyle[css-nav] {
        display: grid;
        justify-content: center;
        align-items: center;
        --gridTemplateColumns: 4;
        grid-template-areas: "in0 in1 in1 in1";
        grid-template-rows: repeat(1, 110px);
        --cellSpacing: 16px;
        grid-gap: var(--cellSpacing);
        grid-template-columns: repeat(var(--gridTemplateColumns), 73px)
    }

    .div0[css-nav] {
        grid-area: in0/in0/in0/in0
    }

    .div1[css-nav] {
        grid-area: in1/in1/in1/in1
    }
}

@media screen and (min-width:104px) and (max-width:324px) {
    .navigationStyle[css-nav] {
        display: grid;
        justify-content: center;
        align-items: center;
        --gridTemplateColumns: 4;
        grid-template-areas: "in0 in1 in1 in1";
        grid-template-rows: repeat(1, 110px);
        --cellSpacing: 16px;
        grid-gap: var(--cellSpacing);
        grid-template-columns: repeat(var(--gridTemplateColumns), 66px)
    }

    .div0[css-nav] {
        grid-area: in0/in0/in0/in0
    }

    .div1[css-nav] {
        margin-left: 6px;
        grid-area: in1/in1/in1/in1
    }
}

@media screen and (max-width:844px) and (min-width:560px) and (min-height:300px) and (max-height:440px) {
    .navigationStyle[css-nav] {
        --gridTemplateColumns: 6;
        grid-template-areas: "in0 in1 in1 in1 in1 in1";
        grid-template-columns: repeat(var(--gridTemplateColumns), 73px)
    }
}

.navLayout[css-nav] {
    display: flex;
    top: 0;
    z-index: 3;
    height: 110px;
    transition: top .5s
}

.whiteBackground[css-nav] {
    position: relative;
    width: 100%
}

.globalBtn[css-nav] {
    margin: 5px
}

.imgSpace[css-nav] {
    margin: 5px 5px 0
}

.gameShow[css-nav] {
    display: flex;
    overflow-x: scroll;
    margin-top: 10px;
    /* padding-top: 20px; */
    width: inherit;
    height: 100px;
}

.gameShow[css-nav]::-webkit-scrollbar {
    display: none
}

.onlyBoxShadow[css-nav] {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, #fff)
}

.onlyBoxShadow[css-nav],
.onlyBoxShadowBefore[css-nav] {
    position: fixed;
    top: 0;
    z-index: 2;
    width: 15px;
    height: 110px
}

.onlyBoxShadowBefore[css-nav] {
    left: 86px;
    background: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 0, #fff)
}

.globalBtn[css-nav] {
    overflow: hidden;
    top: 0;
    border-radius: 15px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 12px 10px 0 rgb(0 0 0/16%);
    transition: top .5s
}

.iconStyle[css-nav] {
    display: flex;
    justify-content: center;
    padding: 13px 8px 0 6px;
    height: 41%
}

.iconStyle>img[css-nav] {
    margin-top: 8px;
    width: 60.5px;
    height: 12px;
}

.indexStyle[css-nav] {
    display: flex;
    border-top: 2px solid #ececec;
    height: 44%
}

.btnStyleHome[css-nav] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 94%
}

.btnStyleHome[css-nav]:active {
    border-radius: 0 0 0 15px;
    background-color: #dff2f9
}

.btnStyleSearch[css-nav] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 91%
}

.btnStyleSearch[css-nav]:active {
    border-radius: 0 0 15px 0;
    background-color: #dff2f9
}

.roundDiv[css-nav] {
    margin: 2px 2px 0 0;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #388ef5
}

 :root{
     --foot-margin-top-height: 22px;
 }
.foot[css-foot] {
    width: 100%;
    font-size: 18px;
}
.footStyle[css-foot] {
    --foot-box-shadow: 0 15px 64px 16px rgba(0, 0, 0, .15);
    position: relative;
    margin-top: 22px;
    margin-top: var(--foot-margin-top-height);
    padding-top:40px;
    padding-bottom: 80px;
    width: 100%;
    box-shadow: var(--foot-box-shadow);
    text-align: center;
    font-family: Helvetica;
    font-weight: 400;
    color: #747474 !important
}
.div1[css-foot] {
    background-color: rgba(228, 161, 15, 0)
}
.logoStyle[css-foot] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 50px
}

.logoStyle>p[css-foot] {
    margin-top: 6px !important;
    margin-top: 0;
    margin-bottom: 0
}

.logoStyle a[css-foot]:-webkit-any-link {
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none
}

.logoStyle a>span[css-foot] {
    font-family: Helvetica;
    font-weight: 400;
    color: #747474 !important
}

.linkText[css-foot] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #747474 !important
}

.linkText>a[css-foot]:-webkit-any-link {
    margin-right: 15px;
    cursor: pointer;
    text-decoration: none;
    color: #747474 !important
}

#selectLanguage>img[css-foot] {
    margin: 0 0 2px 6px
}

.openSelectStyle[css-foot] {
    position: absolute;
    right: calc(50% - 150px);
    bottom: 90%;
    width: 200px
}

 .footStyle[css-foot]{
     padding-top: 70px;
 }
.footStyle[css-foot]::before{
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(./img/logo.png);
    background-size: contain ;
    background-position: center;
    background-repeat: no-repeat;
    height:24px;
    width:121px;
    display: block;
    content: "";
}

