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

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

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

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

#div_iframe_game {
    width: 100%;
	height: 92%;
	
}

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

#game_banner {
    position: absolute;
    width: 100%;
    justify-content: center;
    display: flex;
	background-color: red;
}

.img_recommend {
    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
    }
}