.CustomBoxMain
{
	position:absolute;
	display:flex;
	background:rgba(0,0,0,0.6);
	/*height:var(--resgui-20row);
	width:var(--resgui-32column);*/
	height:100%;
	width:100%;
	align-items:center;
	justify-content:center;
	/*z-index:900;*/
	z-index: 800;
	overflow:hidden; 
}

.CustomBoxForm
{
	border-radius:4px;
	background:var(--main-gb-color);
	overflow:hidden;
	box-shadow: 5px 5px 5px var(--shadow-color);
		box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	border-left:1px solid var(--decor-border-light-color);
	border-top:1px solid var(--decor-border-light-color);
	border-right:1px solid var(--decor-border-dark-color);
	border-bottom:1px solid var(--decor-border-dark-color);
	margin-bottom:-100%;
}



.CustomBoxFormEntry
{
	animation-name: custombox-entry-anime;
	animation-duration: 0.3s;
	animation-timing-function:ease-out;
	animation-fill-mode: forwards;
}

@keyframes custombox-entry-anime
{
	0% {margin-bottom:-100%; }
	100% {margin-bottom:0; }
}

.CustomBoxFormExit
{
	animation-name: custombox-exit-anime;
	animation-duration: 0.3s;
	animation-timing-function:ease-out;
	animation-fill-mode: forwards;
}

@keyframes custombox-exit-anime
{
	0% {margin-bottom:0; }
	100% {margin-bottom:-100%; }
}

.CustomBoxTitleRow
{
	height:var(--resgui-1row);
	width:100%;
	background:var(--messagebox-title-background);
	align-items:center;
}