
/* 사용자 페이지 popup * 지우지말것 */
.popup-web{
	position: fixed;
    width: auto;
    height: auto;
    min-height: 200px;
	z-index:1;
	max-height:90vh;
	top:50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%,-50%);
	min-width: 300px;
	white-space: nowrap;
	display: table;
	max-width: 90vw;
}

.popup-web-in{
	text-align:center;
	width:auto;
	max-width:500px;
	height:100%;
	position:relative;
	display:table-cell;
	margin-right:10px;
	border: 2px solid #ccc;
	vertical-align: top;
}

.popup-web-in:last-of-type{
	margin-right:0px;
}

.popup-web-cont{
	text-align:center;
	width:100%;
	height:100%;
	position:relative;
	display:table;
	overflow:hidden;
	min-height:200px;
	background-color:white;
}


.popup-web-footer{
	text-align:center;
	border-top:1px solid #ccc;
	width:100%;
	display:table;
	background-color:white;
	font-size:0.7rem;
	padding:0 10px 0 10px;
}

.popup-web-footer a{
	font-size:0.7rem;
}

.popup-web-left{
	position:absolute;
	top:10px;
	left:10px;
	z-index:1;
	color:red;
	cursor: pointer;
}

.popup-web-left span{
	font-size: 3rem;
	font-weight: 700;
}

.popup-web-right{
	position:absolute;
	top:10px;
	right:10px;
	z-index:1;
	color:red;
	font-size: 2rem;
	font-weight: 700;
	cursor: pointer;
}

.popup-web-right span{
	font-size: 3rem;
	font-weight: 700;
}

@media screen and (max-width: 740px) {
	.popup-web-in{
		display: inline-block;
	}
}

/* -----------------------*/