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

.popup-web-in{
	text-align:center;
	width:auto;
	height:100%;
	position:relative;
	display:inline-block;
	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:50%;
	left:-4rem;
	z-index:1;
	color:white;
	transform: translateY(-50%);
}

.popup-web-left:after{
	content:'\e5e0' ;
	font-family: 'Material';
	color: #fff;
	font-size: 2rem;

}

.popup-web-right{
	position:absolute;
	top:50%;
	right:-4rem;
	z-index:1;
	color:white;
	transform: translateY(-50%);
}

.popup-web-right:after{
	content:'\e5e1' ;
	font-family: 'Material';
	color: #fff;
	font-size: 2rem;

}


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