.popup-wrap p{
	word-break: keep-all;
	line-height:1.6;
}

.popup-wrap a{
	display:inline-block;
	background:#333;
	color:#fff;
	font-size:12px;
	padding:3px 5px;
	border-radius:5px;
	margin-right:3px;
}

.popup-wrap a:hover{
	background:#999;
	color:#000;
}

/* 팝업 전체 배경 */
#sitePopup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  z-index:9999;

  align-items:center;
  justify-content:center;
}

/* 팝업 박스 */
.popup-inner{
	background:#fff;
	max-width:500px;
	width:90%;
	padding:20px;
	border-radius:10px;
	position:relative;
}

.popup-inner img{
	width:100%;
	height:auto;
}

.popup-close{
	position:absolute;
	top:10px;
	right:10px;
	border:none;
	background:none;
	font-size:20px;
	cursor:pointer;
}

.popup-footer{
	margin-top:15px;
	padding-top:10px;
	border-top:1px solid #eee;
	font-size:14px;
	display:flex;
	justify-content:flex-end;
}