/* Custom dialog styles */
#popup_title {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: none;
	border: solid 1px #FFF;
	border-bottom: 0;
	cursor: default;
	padding: 0em;
	margin: 0em;
	display:none;
}

#popup_container {
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: 0;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #676767;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

#popup_content {
	background: none;
	padding: 1em 1.75em;
	margin: 0em;
	text-align: center; 
}

#popup_message {
	text-align:center;
	padding-left: 0;
	padding:30px 0;
	font-size:18px;
	word-break: keep-all;
}

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

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

#popup_container INPUT[type='button'] {
	/* outline: none; */
	min-width: 100px;
	height: 2rem;
	line-height: 16px;
	margin: 0 3px;
	font-size: 16px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

#popup_container #popup_ok {
  background: #353540 !important;
 color: #fff !important;
 min-width: 90px;
 line-height: 2.3rem;
 padding: 0 24px;
 height: 2.5rem;
 vertical-align: middle;
}

#popup_container #popup_ok:hover, #popup_ok:focus {
	background-color: transparent;
	color: #333;
}

#popup_container #popup_cancel {
	background-color: #fff;
	color: #333;
	border: 1px solid #ddd;
}

#popup_container #popup_cancel:hover, #popup_cancel:focus {
	background-color: #ddd;
	color: #fff;
}
