
.acgAlertModal
{
	background-color:rgba(255,255,255,1);
	color:rgb(51,51,51);
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.acgAlertHeader
{
	display:table;
	width:100%;
	font-weight:bold;
	padding:0.5rem;
}

.acgAlertContent
{
	background-color:initial;
	padding:0.5em 1.2em 0.5em 1.2em !important;
}

.acgAlertButton
{
	min-width:100px;
	
	cursor:hand;
	cursor:pointer;
	
	text-decoration:none;
}

.acgAlertFooter
{
}

.closePopup
{
	jdisplay:inline-block;
	cursor:hand;
	cursor:pointer;	
	jpadding:5px;
}

/*
For popup-specific styles, use a strategy like:
.acgAlertDetailsPopup .acgAlertContent
{
	line-height:1.5;
}

where "acgAlertDetailsPopup" is added to the "class" in the AcgAlert settings.

To customize specific buttons, use something like:

.acgAlertButton[data-acg-id='cancel']
{
	background-color:transparent;
	color:rgb(30,68,113);
	border:1px solid rgb(30,68,113);
}

.acgAlertButton[data-acg-id='cancel']:hover
{
	background-color:rgb(24,54,90);
	color:rgb(255,255,255);
}
*/