/*-----------------------------------------------
	popup
-----------------------------------------------*/
#popup{
    display: none;
    z-index: 9999;
    width: 100%;
	min-height: 100vh;
    background: rgba(0,0,0,1);
	position: relative;
}
#popup .popupContainer{
	display: table;
	width: 100%;
	min-height: 100vh;
}
#popup .popupContents{
	display: table-cell;
	vertical-align: middle;
}
#popup .popupMain{
	width:1050px;
	margin: 0 auto;
}
@media only screen and (max-width:767px){
	#popup{
		width: 100%;
        height: auto;
        min-height: 100vh;
	}
	#popup .popupMain{
		width: 100%;
		padding:30px 10px;
	}
}

/* secPopup */
.secPopup{
	display: none;
}
/* secPopupItem */
.secPopupItem{
	width: 100%;
}
.secPopupItem .popImg{
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	padding: 4px;
}
.secPopupItem .imgBox{
	width: 100%;
}
.secPopupItem .poptxtbox{
	position: relative;
	margin-top: 13px;
	padding-right: 60px;
}
.secPopupItem .poptxt{
	font-size: 15px;
	line-height: calc(26 / 15);
	color:#ccc;
}
.secPopupItem .btnClose{
	position: absolute;
	width: 25px;
	height: 25px;
	right: 0;
	top: 8px;
	pointer-events: all;
	cursor: pointer;
}
.secPopupItem .btnClose::before,
.secPopupItem .btnClose::after{
	content: "";
	position: absolute;
	width: 30px;
	height: 5px;
	background-color: #ccc;
	top: calc(50% - 2.5px);
	left: calc(50% - 15px);
}
.secPopupItem .btnClose::before{
	transform: rotate(45deg);
}
.secPopupItem .btnClose::after{
	transform: rotate(-45deg);
}
@media only screen and (max-width:767px){
	#popup .popupContents{
		display: block;
	}
	.secPopupItem .poptxtbox{
		margin-top: 5px;
		padding-right: 55px;
	}
	.secPopupItem .poptxt{
		font-size: 13px;
		line-height: calc(23 / 13);
	}
	.secPopupItem .btnClose{
		top: 6px;
		right: 5px;
	}
}