@charset "utf-8";
:root
{
	--message-window-color:var(--root-main-2shade-darker);
	--message-text-color:var(--root-main-text-color);
}
#blackoutdiv
{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.8);
	pointer-events: none;
	z-index:100;
}
#messagewindow
{
	position:relative;
	width:50%;
	max-width:20rem;
	margin:0 auto;
	top:25%;
	height:auto;
	background-color:var(--message-window-color);
	pointer-events: auto;
	padding-bottom:.5rem;

}
#messagetitle
{
	text-align:center;
	padding:.5rem;
	margin-bottom:0px;
}
#messagetext
{
	text-align:center;
	text-indent:0;
	
}
#messagebutton
{

	width:100%;
	max-width:10rem;
	margin:0 auto .5rem auto;
	position:relative;
	display:block;
}