#popup_container {
  font-family: Arial, sans-serif;
  font-size: 12px;
  top: -368px !important;
  z-index: 99999999999 !important;
  min-width: 300px; /* Dialog will be no smaller than this */
  max-width: 600px; /* Dialog will wrap after this width */
  background: #ffffff;
  border: solid 3px #1f67b2;
  color: #000;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}
#popup_title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.75em;
  color: #fff;
  background: #1f67b2;
  border: solid 1px #FFF;
  border-bottom: solid 1px #1f67b2;
  cursor: default;
  padding: 0em;
  margin: 0em;
  width: 100%;
}

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

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

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

#popup_content.prompt {
  background-image: url(images/help.png);
}
#popup_message {
  padding-left: 55px;
  color: #4a2609;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

#popup_panel {
  text-align: center;
  margin: 1em 0em 0em 55px;
}
#popup_panel button,#popup_panel [type="button"] {
  background: #1f67b2;
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: 0;
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,.4);
  box-shadow: 1px 1px 4px rgba(0,0,0,.4);
  border-radius: 2px;
  color: #FFF;
}
#popup_prompt {
  margin: .5em 0em;
}