/*
	@note - wrap container
*/
#alertify-wrap {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 25px 0px 15px 0px;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index: 5;
	overflow: auto;
	opacity: 1;
		-webkit-transition: opacity 1s ease-in-out;
		-moz-transition: opacity 1s ease-in-out;
		transition: opacity 1s ease-in-out;
}
	#alertify-wrap.hidden {
		opacity: 0;
		
	}

/*
	@note - alertify container
*/
#alertify {
	position: relative;
	margin: 0 auto;
	margin-top: 0;
	padding: 25px 0 25px 0;
	width: 300px;
	max-width: 650px;
	background-color: #fff;
	opacity: 1;
		-webkit-transition: margin 1s ease-in-out, opacity 1s ease-in-out;
		-moz-transition: margin 1s ease-in-out, opacity 1s ease-in-out;
		transition: margin 1s ease-in-out, opacity 1s ease-in-out;
}

#alertify-wrap #alertify.hidden {
	margin-top: -50px;
	opacity: 0;
}
/*
	@note - support FORM to be viewed properly above 350px (allows phone compatibility)
*/
@media only screen and (min-width: 400px) {
	
	#alertify-wrap {
		padding: 25px 15px 15px 15px;
		background-color: rgba(0,0,0,0.75);
	}
	
	#alertify {
		width: 100%;
		padding: 25px;
		border: 2px solid #32ADFF;
	}
}

/*
	@note - header style
*/
#alertify h1.header {
	margin-bottom: 10px;
	line-height: 40px;
	border-bottom: 1px solid #32ADFF;
	font-weight: 300;
	color: #32ADFF;
}

/*
	@note - title style
*/
#alertify h2.title {
	line-height: 30px;
}

	#alertify.success h2.title {
		color: #5bb75b;
	}

	#alertify.caution h2.title {
		color: #faa732;
	}

	#alertify.error h2.title {
		color: #da4f49;
	}

/*
	@note - body styling for text
*/
#alertify p#body {
	font-size: 24px;
}

/*
	@note - button wrap for correct alignment
*/
#alertify div.buttonWrap {
	margin-top: 10px;
	height: 50px;
	border-top: 1px solid #32ADFF;
}

/*
	@note - button
*/
#alertify div.buttonWrap button {
	width: 50%;
	line-height: 50px;
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
}
	#alertify div.buttonWrap button:active,
	#alertify div.buttonWrap button:hover {
		background-color: #32ADFF;
		color: #FFF;
	}

	#alertify div.buttonWrap button:focus {
		outline: none;	
	}
	
/*
	@note - cancel button
*/
#alertify div.buttonWrap button.cancel {
	
}

/*
	@note - confirm button
*/
#alertify div.buttonWrap button.confirm {
	border-left: 1px solid #32ADFF;
}



















/*
	@note - log
*/
#alertify-notepad {
	position: fixed;
	right: 0;
	bottom: 0;
	padding: 10px;
	width: 300px;
	z-index: 5;
	overflow-y: auto;
	overflow-x: hidden;
	opacity: 1;
		-webkit-transition: opacity 1s ease-in-out;
		-moz-transition: opacity 1s ease-in-out;
		transition: opacity 1s ease-in-out;
}

#alertify-notepad .note {
	position: relative;
	margin-top: 5px;
	padding: 5px;
	width: 280px;
	border-radius: 5px;
	color: #fff;
	opacity: 1;
	display: block;
		-webkit-transition: margin 1s ease-in-out, opacity 1s ease-in-out;
		-moz-transition: margin 1s ease-in-out, opacity 1s ease-in-out;
		transition: margin 1s ease-in-out, opacity 1s ease-in-out;
}

	#alertify-notepad .note.expired {
		margin-left: 100%;
		opacity: 0;
	}

	#alertify-notepad .note.exp1red {
		display: none;
	}

#alertify-notepad .note h5.title {
	
}

#alertify-notepad .note p.body {
	padding: 5px;
}

	#alertify-notepad .note p.body img {
		
	}
	
	#alertify-notepad .note p.body iframe {
		
	}
	
	#alertify-notepad .note p.body ul {
		padding-left: 25px;
	}
		#alertify-notepad .note p.body ul li {
			list-style: initial;
		}

	#alertify-notepad .note.standard {
		background-color: #32ADFF;
		border: 2px solid #007acc;
	}

	#alertify-notepad .note.success {
		background-color: #5bb75b;
		border: 1px solid #3e8e3e;
	}

	#alertify-notepad .note.caution {
		background-color: #faa732;
		border: 1px solid #c77605;
	}

	#alertify-notepad .note.error {
		background-color: #da4f49;
		border: 1px solid #a92723;
	}
	
/*
	@note - button
*/
#alertify-notepad .note div.buttonWrap button {
	width: 50%;
	line-height: 30px;
	background: none;
	border: none;
	font-weight: bold;
	cursor: pointer;
}
	#alertify-notepad .note div.buttonWrap button:active,
	#alertify-notepad .note div.buttonWrap button:hover {
		color: #FFF;
		text-decoration: underline;
	}

	#alertify-notepad .note div.buttonWrap button:focus {
		outline: none;	
	}
	
/*
	@note - cancel button
*/
#alertify-notepad .note div.buttonWrap button.cancel {
	
}

/*
	@note - confirm button
*/
#alertify-notepad .note div.buttonWrap button.confirm {
	border-left: 1px solid #000;
}

@media only screen and (min-width: 320px) {
	
	#alertify-notepad {
		right: 10px;
		bottom: 10px;
	}
	
}