body
{
    padding: 0px;
    margin: 0px;
	font-family: 'Exo', sans-serif;
	font-weight: 600;
	font-size: 14px;
    background: #c63778;
    width: 100%;
    height: 100%;
	background-image: url('../assets/background.jpg');
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.main
{
	color: #FFFFFF;
}

.game_main
{
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
}
.game_container
{
	position: relative;
	width: 80%;
	height: 80%;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	max-height: 1000px;
}
#game_div
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#advideo_div
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: none;
}

#ad_div
{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	border: 1px red solid;
	z-index: 3;
	display: none;
}

.bg-black
{
	background: #000000;
}

.rescue
{
	width: 15%;
}

.footer-copyright
{
	font-size: 14px;
}

#start_btn
{
	font-weight: 800;
	font-size: 30px;
	padding: 15px;
	background-color: #D50000;
	color: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
}

.close
{
	color: white;
	background: red;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 12px;
	padding: 5px;
	z-index: 1001;
	cursor: pointer;
}

/* MEDIA QUERIES */
/* ---------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 349px) /* .col-xs- */
{
	.game_container
	{
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
}

@media screen and (min-width: 350px) and (max-width: 575px) /* .col-xs- */
{
	.game_container
	{
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
}

@media screen and (min-width: 576px) and (max-width: 767px) /* .col-sm- */
{
	.game_container
	{
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) /* .col-md- */
{
	.game_container
	{
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) /* .col-lg- */
{
	.rescue
	{
		width: 30%;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1439px) /* .col-xl- */
{
	.content
	{
		min-height: 1000px;
	}
}

@media screen and (min-width: 1440px) and (max-width: 1619px) /* .col-xxl- */
{
	.content
	{
		min-height: 1000px;
	}
}

@media screen and (min-width: 1620px) /* .col-xxxl- */
{
	.content
	{
		min-height: 1000px;
	}
}