.popup-advertisement {
    position: absolute;
    left: 50%;
	top: 15%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
	/* padding: 15px 15px 0 15px; */
    /* max-width: 90%; */
    max-width: 95%;
    width: 360px;
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    display: none; /* 기본적으로 숨김 */
    transition: transform 0.3s ease, opacity 0.3s ease; /* 부드러운 애니메이션 효과 */
    /* opacity: 0; /* 초기 상태 */ 
}

/* 헤더 스타일 */
/* .popup-advertisement-header { */
	/* font-weight: bold; */
	/* font-size: 18px; */
	/* color: #333333; */
	/* text-align: center; */
	/* margin-bottom: 10px; */
/* } */

.popup-advertisement-header {
    background-color: #f4f4f4;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    border-radius: 10px 10px 0 0;
    cursor: move;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* 본문 스타일 */
.popup-advertisement-content {
	border-radius:5px 5px 0px 0px;
	font-size: 14px;
	color: #666666;
	/* line-height: 1.6; */
	/* margin-bottom: 20px; */
	text-align: center;
	word-wrap: break-word;
}

.popup-advertisement-message{
	/* padding: 20px 20px 10px 20px; */
	line-height: 140%;
	padding: 20px 10px 0px 10px;
}

.popup-advertisement-message img{
	max-width:305px;
	max-height:500px;
}

/* 푸터 스타일 */
.popup-advertisement-footer {
	padding: 0px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* 체크박스와 닫기 버튼 */
.custom-checkbox {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #1f1f1f;
}
.custom-checkbox input[type="checkbox"] {
	margin-right: 5px;
}

.popup-advertisement-close {
    background-color: #f0f8ff00;
	color: #000000;
	border: none;
	border-radius: 5px;
	padding: 8px 15px;
	font-size: 16px;
	cursor: pointer;
}

#overlay{
	background: rgb(0 0 0 / 46%);
}

.popup-overlay {
	overflow:auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 46%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.opt-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}