/*
    24.09.09 
	용준 작성 
	footer 부분이 데스크탑 기준(2160px) 이상이면 적용한 css 효과를 적용
*/

@media screen and (min-width :2160px) {
	#header {
		margin-left: -1%;
	}
	#wrap {
		width: 1000px;
	}
	#footer {
		margin-left: -27%;
	}
	.footer_line {
		width: 400% !important;
		margin-left: -150% !important; 
		/*
			!important  
			--  특정 스타일이 다른 스타일보다 우선적으로 적용되도록 한다 --
			--  여러 CSS 규칙이 적용될 때, !important가 붙은 규칙이 가장 높은 우선순위를 가지게 된다 --
		*/
	}
	.footer_el img{
		margin-left: 70% !important;
	}
	.user_count {
		margin-left: 135% !important;
	}
}
