#popup_container {
	font-size: 0.8rem;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	/* background: #FFF; */
	/* border: solid 5px #999; */
	color: #000;
	/* border: 3px solid #2b6bb5; */
	max-width: 35rem !important;
	width: 100%;
	box-shadow: 2px 3px 6px 1px #636363;
	border-radius: 0.5rem;
	overflow: hidden;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url(images/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(images/info.gif);
}

#popup_content.confirm {
	background-image: url(images/important.gif);
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message {
	color: #000000;
	min-height: 35px;
	font-size: 1.5rem;
	justify-content: center;
	display: flex;
	padding: 2rem;
}

#popup_panel {
	text-align:center;
	margin: 9px 0px 0px;
	display: flex;
	gap: 3%;
}

#popup_prompt {
	margin: .5em 0em;
}

/* For Blue Theme */
#popup_title_blue {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: left;
	line-height: 1.75em;
	color: #f4efef;
	text-shadow: 1px 1px 1px #989292;
	/*background: #CCC url(images/title-blue.png) top repeat-x;
	border: solid 1px #FFF;*/
	background: #5581fe;
	border-bottom: solid 1px #999;
	cursor: default;
	text-align: center;
	padding: 0em;
	margin: 0em;
	width: 100%;
	display: inline-block;
	padding: 1.5rem;
	position: relative;
}

#popup_title_blue::before {content: "\e9d7";font-family: "xeicon";font-size: 2.3rem; /* 애니메이션 설정 */margin-right: 0.7rem;}


@keyframes float {
  0% {
    transform: translateY(-30px); /* 초기 위치 */
  }
  100% {
    transform: translateY(-20px); /* 최종 위치 (아래로 20px 이동) */
  }
}

#popup_content_blue {
	padding: 9px;
	margin: 0em;
	background: #fff;
}

#popup_content_blue.alert {
	background-image: url(images/info-blue.png);
}

#popup_content_blue.confirm {
	background-image: url(images/important-blue.png);
}

#popup_content_blue.prompt {
	background-image: url(images/help-blue.png);
}

/*BOOTSTRAP THEME*/
#popup_ok{
	min-width: 70px;
	border:1px solid;
	background: #3864f2;
	font-weight: normal;
	font-size: 1.6rem;
	color: #000;
	border: 1px solid #3864f2!important;
	padding: 1rem 0rem;
	border-radius: 3px;
	color: #fff;
}
#popup_cancel {
	min-width: 70px;
	border:1px solid;
	background: #ffffff;
	font-weight: normal;
	font-size: 1.6rem;
	color: #000;
	border: 1px solid #c9c9c9 !important;
	padding: 1rem 0rem;
	border-radius: 3px;
	color: #3f3f3f;
}

#popup_cancel:hover , #popup_ok:hover {
	background: #2b2c2f;
	color: #fff;
	border: 1px solid #2b2c2f !important;
}


.icon_alert{
	font-size: 35px;
	position: absolute;
	left: 14px;
	top: 27px;
	color:#3c8dbc;
}

.button-close{
	position: absolute;
  right: 5px;
  top: 4px;
	font-size: 16px;
	padding: 0px 0px 0px 1px;
}
