@charset "utf-8";
/*-----------------------------------------------
	popup
-----------------------------------------------*/
#popup{
	display: none;
	position: relative;
	z-index: 99999;
}
#popup .overlay{
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
}
#popup .popupContainer{
	display: table;
	width: 100%;
	height: 100vh;
}
#popup .popupContents{
	display: table-cell;
	vertical-align: middle;
}
#popup .popupMain{
	width: 96.572%;
	margin: 0 auto;
	position: relative;
	max-width: 1380px;
}
#popup .btnClose{
	width: 19px;
	margin: 0 0 20px auto;
	position: relative;
	z-index: 10;
	position: absolute;
  right: 38px;
  top: 31px;
}
@media only screen and (max-width:767px){
	#popup .popupMain{
		width: 100%;
		padding:50px 4%;
	}
	#popup .btnClose{
		width: 34px;
		margin: 0 0 20px auto;
		position: relative;
		z-index: 10;
		position: absolute;
		right: 18px;
		top: 6px;
	} 
}
@media only screen and (max-width:374px){
	#popup .popupMain{
		padding:50px 4.69%;
	}
}

/* secPopup */
.secPopup{
	display: none;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}