.h_noti {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9000;
}
.h_noti_container {
	min-width: 312px;
	max-width: 360px;
	min-height: 200px;
	padding: 16px;
	display:flex;
	align-items: center;
	justify-content: center;
	flex-direction:column;
	border-radius: 0;
	background: white;
	box-sizing: border-box;
}
.h_noti_content {
	display:flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 8px;
}
.h_noti_message_area{
	font-size: 18px;
	text-align: center;
	color: #474747;
}
.noti_alert_footer{
	margin-top: 24px;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}
.noti_confirm_footer{
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}
.noti_alert_btn{
	width: 160px;
	height: 48px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	border: 1px solid #a3a3a3;
	color: white;
	background: #003df5;
}
.noti_rejected_btn{
	width: 112px;
	height: 48px;
	margin: 0 8px;
	font-size: 18px;
	text-align: center;
	border: 1px solid #a3a3a3;
	color: #a3a3a3;
	background: white;
}

.noti_accepted_btn{
	width: 112px;
	height: 48px;
	margin: 0 8px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	border: 1px solid #a3a3a3;
	color: white;
	background: #003df5;
}

