#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 320px!important; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	/* border: solid 1px #f44c67; */
	color: #000;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	position: fixed !important;
    z-index: 9999999 !important;
	-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,.30),0 2px 10px 0 rgba(0,0,0,.26);
	-moz-box-shadow:0 2px 5px 0 rgba(0,0,0,.30),0 2px 10px 0 rgba(0,0,0,.26);
	-ms-box-shadow:0 2px 5px 0 rgba(0,0,0,.30),0 2px 10px 0 rgba(0,0,0,.26);
	box-shadow:0 2px 5px 0 rgba(0,0,0,.30),0 2px 10px 0 rgba(0,0,0,.12);
}


#popup_title {
  background: #d67d2b none repeat scroll 0 0 !important;
  border-bottom: medium solid #4c5b3b;
  color: #ffffff;
  cursor: default;
  font-family: glegoo;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75em;
  margin: 0;
  padding: 10px;
  position: relative;
  text-align: center;
}
#popup_title::after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #4C5B3B rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-image: none;
  border-style: solid;
  border-width: 8px;
  bottom: -17px;
  content: "";
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0px);
}
#popup_content {
	background:#f4f4f4;
	padding: 2em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	/* background-image: url("../images/info-warning-grey.png"); */
	background-position: 2% 15%;
	background-repeat: no-repeat;
	background-size: 54px;
}
#popup_content.alert::before {
  content: "\f06a";
  font-family: fontawesome;
  font-size: 3em;
  position: absolute;
  color:#d67d2b;
}
#popup_content.confirm {
	/* background-image: url(../images/warning-icon.png); background-repeat: no-repeat; background-position: 4% 20%; background-size: 14% auto; */
}

#popup_content.confirm::before {
  content: "";
  font-family: fontawesome;
  font-size: 3em;
  position: absolute;
  color:#f44c67;
}

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

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em;
}

#popup_prompt {
	margin: .5em 0em;
}
#popup_panel > input {
  background-color: #0E7A3F;
  border: solid 1px ;
  border: medium none;
  border-radius: 0px;
  box-shadow: 1px 1px 1px rgb(8, 114, 158) none repeat scroll 0% 0%;
  color: #ffffff;
  cursor: pointer;
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#popup_panel > input:hover{background:#0CBF56;}