#alert-new.alert-new {
	display: none;
	visibility: hidden;

}

#alert-new.alert-new.is-open {
	display: block;
	visibility: visible;
}

#alert-new.alert-new .o {
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 9999999;
}

#alert-new.alert-new .d {
	position:fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
}

#alert-new.alert-new .d ._t {
	display: table;
	width: 100%;
	height: 100%;
}

#alert-new.alert-new .d ._t ._tc {
	display: table-cell;
	vertical-align: middle;
	height: 300px;
}

#alert-new.alert-new .d ._t ._tc .d_body {
	width: 300px;
	background-color: white;
	border: 1px solid black;
	color: black;	
	margin: 0 auto;
}

#alert-new.alert-new .d ._t ._tc .d_body #header {
	width: 100%;
    background-color: #717171;
	color: white;
	float: left;
}

#alert-new.alert-new .d ._t ._tc .d_body #header .txt {
	float: left;
	width: 80%;
	padding: 4px;
	font-size: 1em;
	line-height: 2em;
	padding-left: 15px;
}

#alert-new.alert-new .d ._t ._tc .d_body #header .cls {
	float: right;
	padding: 4px;
	font-size: 1em;
}

#alert-new.alert-new .d ._t ._tc .d_body #header .cls .fa {
	font-size: 2em;
}

#alert-new.alert-new .d ._t ._tc .d_body #detail {
	padding: 15px;
	float: left;
	width: 100%;
	height: auto;
	background-color: white;
}