@charset "UTF-8";
/* 팝업 공통 */
.popup_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
}

.popup_overlay.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup_overlay .popup {
	position: relative;
	padding: 40px 57px 40px 40px;
	width: 1000px;
	height: 640px;
	background: white;
	border-radius: 32px;
	z-index: 1000;
	box-sizing: border-box;
    /* 헤더 없이 내용만 들어가는 단순 메세지 박스 */
    /* 헤더가 들어가는 단순 메세지 박스 */;
}

.popup_overlay .popup .btn_close {
	position: absolute;
	top: 24px;
	right: 40px;
	width: 32px;
	height: 32px;
	font-size: 0;
	background: url(/kor/img/btn_close.svg) no-repeat;
}

.popup_overlay .popup h2 {
	display: block;
	width: 100%;
	height: 80px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	line-height: 80px;
}

.popup_overlay .popup .scrollcon {
	padding-right: 36px;
	max-height: 480px;
	color: #666;
	overflow-y: scroll;
}

.popup_overlay .popup .scrollcon::-webkit-scrollbar {
	width: 4px;
	background-color: #d4d4d4;
}

.popup_overlay .popup .scrollcon::-webkit-scrollbar-thumb {
	background-color: #999;
}

.popup_overlay .popup .cont {
	padding-right: 36px;
	max-height: 480px;
	color: #666;
	overflow-y: scroll;
}

.popup_overlay .popup .cont::-webkit-scrollbar {
	width: 4px;
	background-color: #d4d4d4;
}

.popup_overlay .popup .cont::-webkit-scrollbar-thumb {
	background-color: #999;
}

.popup_overlay .popup .cont h3, .popup_overlay .popup .cont ul, .popup_overlay .popup .cont p {
	margin-bottom: 10px;
}

.popup_overlay .popup .cont ul ul {
	margin-top: 10px;
}

.popup_overlay .popup .cont ::marker {
	unicode-bidi: isolate;
	font-variant-numeric: tabular-nums;
	text-transform: none;
	text-indent: 0px !important;
	text-align: start !important;
	text-align-last: auto !important;
}

.popup_overlay .popup .cont ul {
	display: block;
	list-style-type: disc;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 40px;
	unicode-bidi: isolate;
}

.popup_overlay .popup .cont ul li {
	list-style-type: disc;
}

.popup_overlay .popup .cont ol {
	display: block;
	list-style-type: decimal;
	margin-block-start: 0;
	margin-block-end: 0;
	padding-inline-start: 40px;
	unicode-bidi: isolate;
}

.popup_overlay .popup .cont ol li {
	list-style-type: decimal;
}

.popup_overlay .popup .cont table {
	margin-bottom: 10px;
	width: 100%;
}

.popup_overlay .popup .cont table tr {
	border: 1px solid #999;
}

.popup_overlay .popup .cont table tr th {
	padding: 10px;
	color: #fff;
	font-weight: 400;
	background-color: #666;
}

.popup_overlay .popup .cont table tr td {
	padding: 10px;
}

.popup_overlay .popup .cont .wrap_btn {
	display: flex;
	gap: 12px;
	margin-top: 50px;
}

.popup_overlay .popup .cont .wrap_btn button {
	width: calc((100% - 12px) / 2);
	height: 44px;
	font-size: 16px;
	color: #999;
	border: 1px solid #d4d4d4;
	border-radius: 50px;
	box-sizing: border-box;
}

.popup_overlay .popup .cont .wrap_btn button.btn_blue {
	color: #fff;
	background-color: #0A31A8;
	border: none;
}

.popup_overlay .popup.simple {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0;
	width: auto;
	min-width: 480px;
	max-width: 560px;
	height: auto;
	min-height: 268px;
	box-sizing: border-box;
}

.popup_overlay .popup.simple .btn_close {
	top: 18px;
	right: 18px;
}

.popup_overlay .popup.simple .cont {
	padding: 0 70px;
	font-size: 18px;
	color: #000;
	word-break: keep-all;
	overflow-y: visible;
}

.popup_overlay .popup.simple .cont a {
	position: relative;
	font-weight: bold;
	color: #1C56FF;
}

.popup_overlay .popup.simple .cont a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background-color: #1C56FF;
}

.popup_overlay .popup.header {
	padding: 18px;
}

.popup_overlay .popup.header h2 {
	margin-bottom: 48px;
	height: 40px;
	line-height: 40px;
}

.popup_overlay .popup.header .cont {
	max-height: none;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.popup_overlay .popup {
		padding: 0 0 50px;
		width: 100%;
		height: 100vh;
		border-radius: 0;
      /* 헤더 없이 내용만 들어가는 단순 메세지 박스 */
      /* 헤더가 들어가는 단순 메세지 박스 */;
	}

	.popup_overlay .popup .btn_close {
		top: 18px;
		right: 20px;
		width: 24px;
		height: 24px;
		background: url(/kor/img/icn_x.svg) no-repeat;
	}

	.popup_overlay .popup h2 {
		height: 60px;
		font-size: 16px;
		line-height: 60px;
	}

	.popup_overlay .popup .cont {
		padding: 0 16px 16px;
		max-height: 100%;
		box-sizing: border-box;
	}

	.popup_overlay .popup .cont .wrap_btn {
		gap: 8px;
		margin-top: 45px;
	}

	.popup_overlay .popup.simple {
		width: calc(100% - 32px);
		min-width: auto;
		min-height: 263px;
		border-radius: 32px;
	}

	.popup_overlay .popup.simple .btn_close {
		top: 20px;
		right: 16px;
		width: 30px;
		height: 30px;
		background: url(/kor/img/btn_close.svg) no-repeat;
		background-size: contain;
	}

	.popup_overlay .popup.simple .cont {
		padding: 0;
		font-size: 16px;
	}

	.popup_overlay .popup.header {
		width: calc(100% - 32px);
		min-height: auto;
	}

	.popup_overlay .popup.header h2 {
		margin-bottom: 45px;
		font-size: 20px;
	}
}