/* CSS Document */
#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	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;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 18px; /*14px;*/
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FF5A00; /*#666;*/
	background: #CCC url(imagenes/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	height:30.5px;
}

#popup_content {
	background: 16px 16px no-repeat url(imagenes/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(imagenes/info.gif);
}

#popup_content.confirm {
	background-image: url(imagenes/important.gif);
}

#popup_content.prompt {
	background-image: url(imagenes/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

.btn-alert {
  display: inline-block;
  font-weight: 400;
  /*color: #858796;*/
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /*background-color: transparent;*/
  border: 1px solid transparent;
  padding: 6px;
  font-size: 12px; /*0.8rem;*/
  line-height: 1.5;
  border-radius: 0.35rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-alert:focus, .btn-alert.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}

/*
.btn-alert:hover {
  *color: #858796;*
  text-decoration: none;
}

.btn-alert.disabled, .btn-alert:disabled {
  opacity: 0.65;
}*/
