#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%;
}

.rotate {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background-color: #000000;
    background-position: center;
    background-size: cover;
    display: none;
}

.rotate.active {
    display: block
}

.rotate .icon {
    background-image: url("../img/rotate_icon.png");
    background-position: center;
    background-size: contain;
    width: 60%;
    height: 100%;
    max-width: 400px;
    background-repeat: no-repeat;
    margin: auto;
}

.continue {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 882;
    background-color: #000000;
    background-position: center;
    background-size: cover;
    display: flex;
    text-align: center;
}

.continue.active {
    display: block
}

.continue_text {
    opacity: 1.0;
    background-position: center;
    background-size: contain;
    background-color: #00000000;
    margin: auto;
    top: 68%;
    color: white;
    width: 100%;
    height: 40px;
    max-width: 400px;
    background-repeat: no-repeat;
    margin: auto;
    justify-content: center;
    border-width: 0px;
}

.continue_text {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

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

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

#gameframediv {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
}

#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.5;
    text-align: center;
    background-color: #fff;
    color: #fff;
    position: absolute;
    left: 0px;
    top: 58px;
    width: 40px;
    height: 40px;
    /* 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;
}

.loading {
    background-color: rgb(0, 0, 0);
    background-position: center;
    position: absolute;
    background-size: cover;
    opacity: .7;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    display: none;
}


.lds-dual-ring {
    width: 80px;
    height: 80px;
    display: table;
    margin: 0 auto;
    /* left: calc(50% - 40px);
    top: calc(50% - 40px); */
    /* top:50%; */
    /* left:50%; */
}

.lds-dual-ring:after {
    position: absolute;
    /* left: calc(50% - 32px); */
    top: calc(50% - 40px);
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    /* margin: 8px; */
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}