
/* Desktop Device : 600 이하 */
@media screen and (max-width:600px){
	
	.tabcontent_iframe{height: 80vh; /*max-height:750px;*/}

}


/* Desktop Device : 601 이상 1100 이하 */
@media screen and (min-width:601px) and (max-width:1000px){
	
	.tabcontent_iframe{height: 100vh; /*max-height:800px;*/}

}

/* Desktop Device : 1001 이상 1240 이하 */
@media screen and (min-width:1001px) and (max-width:1240px){

	.tabcontent_iframe{height: 115vh; /*max-height:1200px;*/}


}


/* Desktop Device : 1241 이상 프린트 사이즈 */
@media screen and (min-width:1241px), only print{
	
	.tabcontent_iframe{height:100vh; height:450px;}

}