#settingImg {
    position: absolute;
    cursor: pointer;
    top: 150px;
    right: 0;
    z-index: 100;
    display: none;
}

#show_game_detail_71 {
    position: absolute;
    cursor: pointer;
    top: 150px;
    right: 0;
    z-index: 100;
}

body,html {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}

#mainContainer {
    z-index: 900;
    position: fixed;
}

#adContainer {
    width: 100%;
    height: 100%;
    background: black;
}

#gameframediv {
    /*position: fixed;*/
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* Media query for larger screens (PC) */
@media (min-width: 300px) {
    #gameframediv {
        width: 100%;  /* Adjust width for PC */
        height: 100%;  /* Adjust height for PC */
        max-width: 700px;  /* Max width for larger screens */
        margin: 0 auto;  /* Center horizontally */
        box-sizing: border-box; /* Include padding in width and height */
    }
}

#game_frame {
    width: 100%;
    height: 100%;
}

#afc_banner_foot {
    /*justify-content: center;*/
    /*display: flex;*/
	 position: fixed;
	 bottom: 0px;
	 width: 100%;
}

.go-other {
    width: 50px;
    height: 50px;
    background-color: red;
    position: fixed;
    z-index: 222;
    left: 10px;
    top: 50px;
    -webkit-animation: scaleAni 1s ease-in infinite;
    animation: scaleAni 1s ease-in infinite;
    background: url("/public/img/gift.png") no-repeat center;
    background-size: contain;
}

.floating-button {
    opacity: 0.7;
    text-align: center;
    background-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    position: absolute;
    left: 0px;
    /* top: 100px; */
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    z-index: 1500;
    overflow: hidden;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    /* background-color: #2196f3; */
}

#floating-nav {
    position: absolute;
    left: 0px;
    top: 100px;
    width: 60px;
    height: 60px;
}

.floating-button-round {
    opacity: 0.7;
    text-align: center;
    /* background-color: rgb(8, 4, 4);
    color: rgb(31, 4, 4); */
    position: absolute;
    left: 0px;
    /* top: 100px; */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1500;
    overflow: hidden;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    /* background-color: #2196f3; */
}

.floating-button.left {
    border-radius: 0 12px 12px 0;
}

.floating-button.right {
    border-radius: 12px 0 0 12px;
}

/* more.css */

.a_more_game {
    -webkit-animation: rotatei 4s infinite;
    animation: rotatei 4s infinite;
    height: 60px;
    left: 0px;
    position: relative;
    top: 20%;
    width: 60px
}

.moreBack {
    opacity: 1
}

.font_more_game {
    animation: uptop 1s infinite;
    -webkit-animation: uptop 1s infinite;
    -moz-animation: uptop 1s infinite;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    left: 18px;
    top: 120px;
    position: absolute;
    text-align: center;
    width: 25px;
    z-index: 1600
}

@-webkit-keyframes rotatei {
    0% {
        transform: rotate(0deg) scale(1)
    }

    25% {
        transform: rotate(10deg) scale(1.2)
    }

    50% {
        transform: rotate(0deg) scale(1)
    }

    75% {
        transform: rotate(-10deg) scale(1.2)
    }

    to {
        transform: rotate(0deg) scale(1)
    }
}

@keyframes rotatei {
    0% {
        transform: rotate(0deg) scale(1)
    }

    25% {
        transform: rotate(10deg) scale(1.2)
    }

    50% {
        transform: rotate(0deg) scale(1)
    }

    75% {
        transform: rotate(-10deg) scale(1.2)
    }

    to {
        transform: rotate(0deg) scale(1)
    }
}

@-webkit-keyframes uptop {
    0% {
        top: 10px
    }

    50% {
        top: 23px
    }

    to {
        top: 10px
    }
}

@keyframes uptop {
    0% {
        top: 10px
    }

    50% {
        top: 23px
    }

    to {
        top: 10px
    }
}