div#siteAlertBackground {
	background-color: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
		
	height:100vh;
}

div#siteAlertPlacement {
	width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999999999999999999999999999999 !important;
}

div#siteAlert {
	display: none;
    background-color: #FFFFFF;
    border: 1px solid #2A4053;
    bottom: 0;    
    left: 0;
    margin: auto;
    overflow: auto;
    position: absolute;
    right: 0;
    top: 0;
    max-width:100%;
    z-index: 10000;
    position: fixed;
    overflow: hidden;
    overflow-y: hidden;
    position: relative;
	height: auto;
	width: auto;
	float: left;
	padding: 25px;
}

div#siteAlertButtons {
	width:100%;
	display:flex;
	flex-direction:row;
	justify-content:space-around;
}
div.simpleAlertBtn,
div.siteAlertButton {
	padding: 5px;
	/*border: 1px solid black;*/
	display: inline;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
	color: white;
	border-radius:10px;
}
div.simpleAlertBtn#alertSiteOKBtn,
div.siteAlertButton#alertSiteOKBtn {
	background-color: green;
}

div.siteAlertButton#alertSiteQuitBtn {
	background-color: #EC6522;
}

div.siteAlertMessage {
	text-align:center;
	margin-bottom: 20px;
}


