@charset "UTF-8";

#adsContainerBackground{
	position: fixed;
	top:0;
	left: 0;
	background-color: rgba(255,255,255,0.7);
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: block;
	cursor: pointer;
}

#adsContainerCloseAdArea{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
}

#adsContainer{
	position:absolute;
	width: 440px;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	top: 8%;
	left:0;
	right: 0;
	cursor: pointer;
}

#adsContainer img{
	width: 440px;
	height: auto;
	box-shadow: 0px 0px 14px rgba(0,0,0,0.4);
}




/* Breakpoint 01 */ 
@media (max-width: 910px){
	
	#adsContainer{
		width: 440px;
		margin-left: auto;
		margin-right: auto;
	}
	
	#adsContainer img{
		width: 440px;
	}
	
}

/* Breakpoint 02 */ 
@media (max-width: 500px){
	
	#adsContainer{
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}
	
	#adsContainer img{
		width: 100%;
	}
	
}