/* BASIC css start */
#specialEvt#MAKESHOPLY4 { background:#fff; }

/* 팝업이 오버레이 위에 오도록 position/z-index 지정 */
#specialEvt#MAKESHOPLY4 .cont-pop {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;           /* overlay(999)보다 높게 */
  background: #fff;
  max-width: 520px;
  width: 90vw;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

#specialEvt#MAKESHOPLY4 .cont-pop .cont { padding:0; min-height:375px; }
#specialEvt#MAKESHOPLY4 .cont-pop .cont img { width:100%; display:block; }

.close-wrap { margin:0; }
.close-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;          /* 흰색 배경 */
  border: 1px solid #ccc;    /* 회색 테두리 */
  text-align: center;
  color: #000;
}

.close-left, .close-right {
  flex: 1;                   /* 반반 영역 */
  padding: 12px 0;
  cursor: pointer;
  border-right: 1px solid #ccc;
  user-select: none;
  font-size: 16px;
  font-weight: 400;
}
.close-right { border-right: none; }
.close-left:hover, .close-right:hover { background:#f5f5f5; }

/* 화면을 어둡게 하는 오버레이 */
.overlay {
  display: none; /* 기본 숨김 */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* 검정 50% 투명 */
  z-index: 999; /* 팝업 뒤에 위치 */
}

/* BASIC css end */

