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

#div_afc_Content {
    background: #6495ed
}

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

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

#div_iframe_game {
    width: 100%
}

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

#game_banner {
    width: 100%;
    justify-content: center;
    display: flex;
    position: fixed
}

.img_tap_game {
    opacity: .1;
    overflow: hidden;
    animation-name: breath;
    animation-duration: 1200ms;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-name: breath;
    -webkit-animation-duration: 1200ms;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite
}

@keyframes breath {
    from {
        opacity: .1
    }
    50% {
        opacity: 1
    }
    to {
        opacity: .1
    }
}

@-webkit-keyframes breath {
    from {
        opacity: .1
    }
    50% {
        opacity: 1
    }
    to {
        opacity: .1
    }
}

@media screen and (orientation:landscape) {
    #game_banner {
        display: none !important
    }
    #div_iframe_game {
        height: 100% !important
    }
}