

/* ----- alertNew styles | start ----- */
#alertNew:before {
	content: ' ';
	background: rgba(0, 0, 0, 0.5);
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
}

#alertNew {
	position: fixed;
	width: 300px;
	min-height: 75px;
	z-index: 2;
	text-align: center;
	top: 0;
	
	opacity: 0;
	transition: opacity 2s ease-in-out;
	-moz-transition: opacity 2s ease-in-out;
	-webkit-transition: opacity 2s ease-in-out;
}
#alertNew:first-of-type {
	opacity: 1;
}

#alertNew > div {
	position: relative;
	width: 100%;
	height: auto;
	background: #F5F5F5;
	margin: 16px 42vw;
	max-height: 350px;
	overflow: auto;
}
#alertNew > div:first-of-type {
	margin-top: 20vh;
}

#alertNew > div > .alertTitle > .alertClose {
	float: right;
}

#alertNew > div > .alertTitle {
	width: 100%;
	text-align: center;
	font-size: 1em;
	font-weight: bold;
	padding: 3px;
}
#alertNew ol, #alertNew ul {
	margin: 5px;
	list-style: none;
}
#alertNew > div > p {
	color: #2B4035;
	text-align: left;
	padding: 0px 20px;
}
#alertNew > div button {
	margin: 6px;
	min-width: 60px;
	background: rgba(0, 0, 0, 0.2);
	border: none;
	padding: 2px;
}
#alertNew > div button:hover {
	background: rgba(0, 0, 0, 0.4);
}
#alertNew > div button.alertClose {
	min-width: 25px;
	background: rgba(0, 0, 0, 0.6);
	color: #FFFFFF;
	margin: 0px;
}
#alertNew > div button.alertClose:hover {
	background: rgba(0, 0, 0, 0.8);
}


#alertNew > div.default > .alertTitle {
	background: #818181;
	border-bottom: 2px solid #191919;
}
#alertNew > div.default {
	background: #DFDFDF;
}
#alertNew > div.success > .alertTitle {
	background: #4BEC13;
	border-bottom: 2px solid #34A50D;
}
#alertNew > div.success {
	background: #DBFBCF;
}
#alertNew > div.error > .alertTitle {
	background: #E23425;
	border-bottom: 2px solid #9E2419;
}
#alertNew > div.error {
	background: #F9D6D3;
}

#alertNew > div.alertNewRadius, #alertNew > div.alertNewRadius button {
	border-radius: 5px;
}

#alertNew input {
	width: 90%;
	background: #818181;
	border: 2px solid #191919;
	border-radius: 6px;
	padding: 6px;
	color: #191919;
	font-size: 14px;
	cursor: pointer;
}

/* ----- alertNew styles | end ----- */
