#popup_container {
	font-family: Arial, sans-serif;
	font-size: 16px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	color: #333;
	padding: 2.5rem 4.375rem;
	box-shadow: 0 0 2px #0003, 0 2px 10px #0000001a;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-align: center;
}

@media only screen and (min-width: 768px) {
    #popup_container {
        width: 32.188rem;
        height: fit-content;
        overflow-y: hidden;
    }
}

#popup_title {
	padding-left: 0;
}

#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_panel {
	text-align: center;
	margin: 19px 0;
}

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