/* CSS Document */
#sableModalDialog.error::backdrop{background-color: rgba(255, 0, 0, 0.75);}
#sableModalDialog.warning::backdrop{background-color: rgba(185, 30, 0, 0.75);}
#sableModalDialog.success::backdrop{background-color: rgba(30, 234, 30, 0.65);}
#sableModalDialog.info::backdrop{background-color: rgba(10, 5, 200, 0.55);}
#sableModalDialog.query::backdrop{background-color: rgba(10, 5, 200, 0.55);}

#sableModalDialog
{
	padding: 8px !important;
	border-radius:12px;
	border:2px #1b313e solid !important;
	box-shadow: #1b313e 2px 2px 12px 0px;
}

#sableModalDialogHeader
{
	/*color: #e7cb7b;
	background-color: #e7cb7b;
	*/
	color: #1b1f42;
	font-size: 2.0em;
    border-bottom: #1b1f42 4px solid;
    text-transform: uppercase;
	margin-bottom: 8px;
	text-align: center !important;
}

#sableModalDialogMessage
{
	
}

#sableModalDialogFooter > button
{
	-webkit-appearance: none !important; 
    outline: none;
    border: none;
    background: #1b313e;/*#745EC5*/
    color: #fff;
	padding: 10px 10px;
    margin: 3px 10px;
    width: 35%;
    text-align: center;
    font-size: 1em;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
	font-weight:bold;
	border-radius: 3px;
	cursor:pointer;
	line-height: .8;
}

#sableModalDialogFooter > button:hover
{
	background:#1f94d2;
	color:#fff;
	font-weight:bold;
	-webkit-appearance: none;
}

#sableModalDialogFooter
{
	color: #1f94d2;
    text-transform: uppercase;
	margin-top: 8px;
	text-align: center !important;
}

