/* 경고창 */
.HAlert {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width:100%;
	height:100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index:998;
}

.HAlert .HAlert-window {
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	min-width: 200px;
	padding:0px 15px 0px 15px;
	background: #fff;
	border:1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.HAlert .HAlert-title {
	height: 40px;
	width: 100%;
	display: none;
	align-items: center;
	justify-content:right;
}

.HAlert .HAlert-title .HWin-close {
	font-size: 40px;
	font-weight: 500;
	color: #333;
}

.HAlert .HAlert-content {
	flex: 1;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align:left;
	color: #333;
	font-size: 16px;
	line-height: 1.5;
}

.HAlert .HAlert-btns {
	height: 80px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content:center;
}

.Hsubmit {
	display: inline-block;
	height: 32px;
	padding-left: 20px;
	padding-right: 20px;
	border-radius: 5px;
	background: #346aff;
	color: #fff;
}

/* 로딩 */
.loading_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 불투명한 회색 배경 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* 다른 컨텐츠 위에 나타나도록 z-index 설정 */
}

.loading_overlay > .loader {
  display: flex;
  flex-direction: column; /* 위아래로 배치 */
  align-items: center; /* 가운데 정렬 */
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center; /* 가운데 정렬 */
  position: relative;
  height: 70px;
  width: 200px;
}

.loading_overlay > .loader > div {
	position:absolute;
	top: 35px;
	font-weight: 500;
	color: #3F63BF;
}