.alertBoxContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index:1001;
}
.alertBox {
	border: 5px solid black;
	    background-color: #FFFFFF;
}
.alertBoxHeader {
    text-align: center;
    border-bottom: 3px solid black;
	background-color: #d90429;
    padding: 10px;
}
.alertBoxFooter {
	text-align: center;
	padding: 20px;
}
.alertBoxContent {
	padding: 20px;
}
.alertBoxConfirmButton
{
	padding: 0 10px;
	margin: 0 10px;
}
#infoNoticeMasterContainer
{
	position: fixed;
	bottom:0;
	width: 100%;
	z-index:1000;
}
.infoNoticeContainer
{
	
	background-color: rgba(0,0,0,0.6);
	padding:5px;
	margin-top: 5px;
	box-sizing: border-box;
}
.infoNotice
{
	color: #FFFFFF;
	text-align: center;
}
.infoNoticeHeader
{
	display:flex;
	place-content: flex-end;

}
.infoNoticeCloseX
{
	font-family: 'Font Awesome 5 Free';
    font-weight: 900; 
    font-size: 2vw;
	cursor:pointer;
}