	.privacy_bg {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		display: none;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.2);
		z-index: 99;
	}
	.privacy_bg.show {
		display: block;
	}
	.privacy_area {
		position: fixed;
		left: 50%; 
		top: 50%;
		display: none;
		transform: translate(-50%,-50%);
		max-width: 450px;
		width: 100%;
		font-family: 'Pretendard';
		font-weight: 400;
		font-size: 1.4rem;
		line-height: 1.5;
		color: #034e89;
		word-break: keep-all;
		z-index: 9999999;
	}
	.privacy_area .f_str {
		font-weight: bold;
	}
	.privacy_top {
		position: relative;
		background: #034e89;
		color: #fff;
		font-size: 2rem;
		padding: 15px;
	}
	.privacy_top .close_btn {
		position: absolute; 
		right: 15px;
		top: 50%; 
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		background: transparent;
		cursor: pointer;
	}
	.privacy_top .close_btn span {
		display: block;
		width: 100%;
		height: 2px;
		background: #fff;
	}
	.privacy_top .close_btn span:first-child {
		transform: rotate(45deg);
		margin-top: 10px;
	}
	.privacy_top .close_btn span:last-child {
		transform: rotate(-45deg);
		margin-top: -2px;
	}
	.privacy_cont {
		width: 100%;
		background: #fff;
		padding: 20px;
		text-align: center;
		box-sizing: border-box;
	}
	.privacy_area.personal_safe .privacy_cont {
		overflow-y: scroll;
		height: 80vh;
		text-align: left;
	}
	.privacy_cont .tit {
		background: rgb(3 78 137 / 70%);
		color: #fff;
		margin-bottom: 15px;
		padding: 5px 10px;
	}
	.privacy_cont .txt {
		margin-bottom: 30px;
	}
	.privacy_tbl {
		width: 100%; border-collapse: collapse;
		margin-bottom: 30px;
	}
	.privacy_tbl tr th, .privacy_tbl tr td {
		padding: 5px; text-align: center;
		border: 1px solid rgb(3 78 137 / 30%);
	}
	.privacy_tbl tr th {
		background: rgb(3 78 137 / 40%);
		color: #fff;
	}

	@media screen and (max-width: 500px) {
	.privacy_area {
			width: 90%;
		}		
	}
