/*******************************
Alert Dialog Rev 4.29.19
*******************************/
.dmsAlert{
	background-color: #fff;
	padding: 2px;	
	-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;
	z-index: 1000000;
}
.dmsAlert .ui-dialog-titlebar {
    font-family: 'Open Sans', sans-serif;
	font-size: .8em; 
	font-weight: 600;
	margin: 0 0 1em 0; 
	padding: .25em 0 0 .5em;
	background-color: #004284;
	height: 2.5em;
	color: #FFF;
}

/* Hide the close button in the uppper left */
.dmsAlert .ui-dialog-titlebar button {
	display: none;
	
}
/* Area containing the error message paragraphs */
.dmsAlert .ui-dialog-content {
	margin: 0;
	padding: .25em .5em;
}
/* The error message paragraphs */
.dmsAlert .ui-dialog-content p {
    font-family: 'Open Sans', sans-serif;
	font-size: .8em; 
	color: #4A4A4A;
}

/* Area containing the buttons */
.dmsAlert .ui-dialog-buttonpane {
	margin: 0;
	padding: .25em .5em;
}

/* The buttons */
.dmsAlert .ui-dialog-buttonpane button {
	font-size: .8em; 
	color: #fff;
	background-color: #0191da;
	border: none;
	padding: .25em 1em;
	text-transform: uppercase;	
	-moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px;	
	-webkit-transition-duration: 0.1s; /* Safari */
	transition-duration: 0.1s;	
}
/* The first button: the OK button */
.dmsAlert .ui-dialog-buttonpane button:hover {
	background-color: #4CAF50; /* Green */
	color: white;
}
/* The second button: the CANCEL button */
.dmsAlert .ui-dialog-buttonpane button:nth-of-type(2n):hover {
	background-color: #F00; /* Red */
	color: white;
}
/* Add a custom focus instead of the default blue outline */
.dmsAlert .ui-dialog-buttonpane button:focus {
	outline: 0;
	outline: none !important;
	background-color: #00A3A1; /* Green */
	color: white;
	
}
/* The overlay to gray out the background */
.ui-widget-overlay{ background-image: url('https://anticsdms.com/html/img/overlay.png'); opacity: 0.5;}

